| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <UserControl x:Class="UniversalControls.Controls.BoatSlotDiagram"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:UniversalControls.Controls"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <UserControl.Resources>
- <ResourceDictionary >
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="/UICommon;component/Resources.xaml"/>
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </UserControl.Resources>
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="auto"/>
- <ColumnDefinition Width="8"/>
- <ColumnDefinition Width="180"/>
- </Grid.ColumnDefinitions>
- <UniformGrid Columns="1" VerticalAlignment="Center">
- <Border BorderBrush="Black" BorderThickness="0.5">
- <StackPanel Margin="4">
- <TextBlock Margin="4">Upper SDNum:</TextBlock>
- <Button Style="{StaticResource FunctionButton}" Background="White" BorderThickness="1" Height="24" Foreground="Black" Margin="4">0</Button>
- </StackPanel>
- </Border>
- <Border BorderBrush="Black" BorderThickness="0.5,0">
- <StackPanel Margin="4">
- <TextBlock Margin="4">Product Num:</TextBlock>
- <Button Style="{StaticResource FunctionButton}" Background="White" BorderThickness="1" Height="24" Foreground="Black" Margin="4">0</Button>
- </StackPanel>
- </Border>
- <Border BorderBrush="Black" BorderThickness="0.5">
- <StackPanel Margin="4">
- <TextBlock Margin="4">Monitor1 Num:</TextBlock>
- <Button Style="{StaticResource FunctionButton}" Background="White" BorderThickness="1" Height="24" Foreground="Black" Margin="4">0</Button>
- </StackPanel>
- </Border>
- <Border BorderBrush="Black" BorderThickness="0.5,0">
- <StackPanel Margin="4">
- <TextBlock Margin="4">Monitor2 Num:</TextBlock>
- <Button Style="{StaticResource FunctionButton}" Background="White" BorderThickness="1" Height="24" Foreground="Black" Margin="4">0</Button>
- </StackPanel>
- </Border>
- <Border BorderBrush="Black" BorderThickness="0.5">
- <StackPanel Margin="4">
- <TextBlock Margin="4">Lower SDNum:</TextBlock>
- <Button Style="{StaticResource FunctionButton}" Background="White" BorderThickness="1" Height="24" Foreground="Black" Margin="4">0</Button>
- </StackPanel>
- </Border>
- </UniformGrid>
- <TextBlock Grid.Column="2" VerticalAlignment="Center" HorizontalAlignment="Center">Demo Here</TextBlock>
- </Grid>
- </UserControl>
|