1580adb4d5
- modifiche per veinmatching multilastra.
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<Window x:Class="VeinMatchingWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
TextBlock.FontFamily="./Resources/Fonts/#Century Gothic"
|
|
Height="500" Width="500" ShowInTaskbar="False" Topmost="True" Initialized="Window_Initialized" MinWidth="300" MinHeight="300">
|
|
|
|
<Grid Name="VeinMatchingGrid" Background="{StaticResource OmagCut_Gray}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="91"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<StackPanel Orientation="Vertical">
|
|
<Button Name="NewBtn" Height="64"
|
|
Style="{StaticResource OmagCut_YellowTextButton}"
|
|
Content="New"/>
|
|
<Button Name="LoadBtn" Height="64"
|
|
Style="{StaticResource OmagCut_YellowTextButton}"
|
|
Content="Load"/>
|
|
<Button Name="SaveBtn" Height="64"
|
|
Style="{StaticResource OmagCut_YellowTextButton}"
|
|
Content="Save"/>
|
|
<Button Name="ExportBtn" Height="64"
|
|
Style="{StaticResource OmagCut_YellowTextButton}"
|
|
Content="Export"/>
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
</Window>
|