36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
<Window x:Class="VeinMatchingWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Height="500" Width="500" ShowInTaskbar="False" Initialized="Window_Initialized" MinWidth="300" MinHeight="300">
|
|
|
|
<Grid Name="VeinMatchingGrid" Background="{StaticResource Omag_Gray}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="91"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<StackPanel Orientation="Vertical">
|
|
<ToggleButton Name="ShowTextBtn" Height="40" Width="80"
|
|
Margin="0,5,0,0"
|
|
Content="ShowText"/>
|
|
<ToggleButton Name="EditBtn" Height="40" Width="80"
|
|
Margin="0,5,0,0"
|
|
Content="Edit"/>
|
|
<ToggleButton Name="VerifyBtn" Height="40" Width="80"
|
|
Margin="0,5,0,0"
|
|
Content="Verify"/>
|
|
<ToggleButton Name="MagneticBtn" Height="40" Width="80"
|
|
Margin="0,5,0,0"
|
|
Content="Magnetic"/>
|
|
<Button Name="ExportBtn" Height="40" Width="80"
|
|
Margin="0,5,0,0"
|
|
Content="Export"/>
|
|
<Button Name="AssemblyBtn" Height="40" Width="80"
|
|
Margin="0,5,0,0"
|
|
Content="3D"/>
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
</Window>
|