7be2395fc3
- Cambio tema disponibile nella OptionsPageUC (necessario riavvio programma per applicarlo)
25 lines
946 B
XML
25 lines
946 B
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="{DynamicResource OmagCut_Font}"
|
|
Height="500" Width="500" ShowInTaskbar="False" Initialized="Window_Initialized" MinWidth="300" MinHeight="300">
|
|
|
|
<Grid Name="VeinMatchingGrid" Background="{DynamicResource OmagCut_Gray}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="91"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<StackPanel Orientation="Vertical">
|
|
<Button Name="NewBtn" Height="64"
|
|
Style="{DynamicResource OmagCut_YellowTextButton}"
|
|
Content="New"/>
|
|
<Button Name="ExportBtn" Height="64"
|
|
Style="{DynamicResource OmagCut_YellowTextButton}"
|
|
Content="Export"/>
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
</Window>
|