123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <Window
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:ST_CUBE_MES"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- Title="ST-CUBE_MES"
- Width="800"
- Height="450"
- FontSize="12"
- Background="#FF646464"
- Foreground="White"
- WindowStartupLocation="CenterScreen"
- mc:Ignorable="d"
- x:Class="ST_CUBE_MES.MainWindow">
- <Grid Margin="10">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition Height="Auto" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <GroupBox Grid.Row="0" Header="User Setting">
- <Grid Margin="5">
- <Grid.RowDefinitions>
- <RowDefinition />
- <RowDefinition Height="5" />
- <RowDefinition />
- <RowDefinition Height="5" />
- <RowDefinition />
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="70" />
- <ColumnDefinition />
- </Grid.ColumnDefinitions>
- <TextBlock
- Grid.Row="2"
- VerticalAlignment="Center"
- Text="SN" />
- <TextBlock
- Grid.Row="4"
- VerticalAlignment="Center"
- Text="Bin File" />
- <TextBox
- x:Name="uxSN"
- Grid.Row="2"
- Grid.Column="1"
- Height="30"
- VerticalContentAlignment="Center" />
- <Grid Grid.Row="4" Grid.Column="1">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="29*" />
- <ColumnDefinition Width="287*" />
- <ColumnDefinition Width="50" />
- </Grid.ColumnDefinitions>
- <TextBox
- x:Name="uxBinFilePath"
- Grid.ColumnSpan="2"
- Height="30"
- Margin="0,5"
- VerticalContentAlignment="Center" />
- <Button
- x:Name="uxBinFileBtn"
- Grid.Column="2"
- Width="40"
- Height="40"
- Margin="5,0"
- Click="uxBinFileBtn_Click"
- Content="." />
- </Grid>
- </Grid>
- </GroupBox>
- <Grid
- Grid.Row="1"
- Height="30"
- Margin="5">
- <Grid.ColumnDefinitions>
- <ColumnDefinition />
- <ColumnDefinition Width="30" />
- <ColumnDefinition Width="100" />
- </Grid.ColumnDefinitions>
- <ProgressBar
- x:Name="uxProgressBar"
- Height="10"
- VerticalAlignment="Center" />
- <TextBlock
- Grid.Column="1"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Text="0%" />
- <Button
- x:Name="uxRunBtn"
- Grid.Column="2"
- Background="LightSkyBlue"
- Click="uxRunBtn_Click"
- Content="Run" />
- </Grid>
- <GroupBox Grid.Row="2" Header="Terminal">
- <RichTextBox x:Name="uxTerminal" Background="Black" />
- </GroupBox>
- </Grid>
- </Window>
|