aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/Views/ConnectionLostView.xaml.cs
blob: 50f0429a48b1a4064903fbc128814cce0744e5cf (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
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;

namespace Tango.MachineStudio.UI.Views
{
    /// <summary>
    /// Interaction logic for ConnectionLostView.xaml
    /// </summary>
    public partial class ConnectionLostView : UserControl
    {
        public ConnectionLostView()
        {
            InitializeComponent();
        }
    }
}
</Grid> <Grid> <!--HERE--> <StackPanel> <StackPanel HorizontalAlignment="Left" Width="400"> <TextBlock>Application Type</TextBlock> <ComboBox Margin="0 2 0 0" ItemsSource="{Binding BtsrApplicationTypes}" SelectedItem="{Binding ActiveRML.BtsrApplicationType}" DisplayMemberPath="Description"></ComboBox> </StackPanel> <StackPanel Margin="0 20 0 0" HorizontalAlignment="Left" Width="400"> <TextBlock>Yarn Type</TextBlock> <ComboBox Margin="0 2 0 0" ItemsSource="{Binding BtsrYarnTypes}" SelectedItem="{Binding ActiveRML.BtsrYarnType}" DisplayMemberPath="Description"></ComboBox> </StackPanel> <StackPanel Margin="0 20 0 0" HorizontalAlignment="Left" Width="400"> <TextBlock>Tension Error</TextBlock> <mahapps:NumericUpDown HorizontalContentAlignment="Left" Padding="5 0 0 0" Margin="0 2 0 0" HasDecimals="True" Minimum="0" Maximum="1000" Value="{Binding ActiveRML.BtsrTensionError}" ></mahapps:NumericUpDown> </StackPanel> </StackPanel> <!--HERE--> </Grid> </DockPanel> </Grid> </DockPanel> </Grid> </UserControl>