aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Technician/PropertiesTemplates/MultiGraphTemplate.xaml.cs
blob: ae5cf4f8986bfd8ebfcdf82c120722c35629b91e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using Tango.MachineStudio.Technician.TechItems;

namespace Tango.MachineStudio.Technician.PropertiesTemplates
{
    /// <summary>
    /// Interaction logic for SingleGraphTemplate.xaml
    /// </summary>
    public partial class MultiGraphTemplate : UserControl
    {
        public MultiGraphTemplate()
        {
            InitializeComponent();
        }
    }
}
Y2 = 1, //StrokeDashArray = { 0, 2 }, //Stretch = Stretch.Fill, //StrokeThickness = 1, //StrokeDashCap = PenLineCap.Round, //Margin = new Thickness(2, 0, 2, 0), //Tag = tag }; return line; } /// <summary> /// Creates a vertical dotted line to separate the line numbers from the text view. /// </summary> [Obsolete("This method got published accidentally; and will be removed again in a future version. Use the parameterless overload instead.")] public static UIElement Create(TextEditor editor) { Line line = (Line)Create(); line.SetBinding( Line.StrokeProperty, new Binding("LineNumbersForeground") { Source = editor } ); return line; } /// <summary> /// Gets whether the specified UIElement is the result of a DottedLineMargin.Create call. /// </summary> public static bool IsDottedLineMargin(UIElement element) { Line l = element as Line; return l != null && l.Tag == tag; } } }