Files
OmagCUT/SaveCurrProjWD.xaml
T
Emmanuele Sassi 875000091e OmagCUT :
- Implementata gestione database utensili.
2015-11-05 07:44:21 +00:00

42 lines
1.8 KiB
XML

<Window x:Class="SaveCurrProjWD"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="SaveCurrProjWD" Height="213.3" Width="341.3" ShowInTaskbar="False" ResizeMode="NoResize" WindowStyle="None"
Initialized="Window_Initialized" AllowsTransparency="True" Background="Transparent" Loaded="Window_Loaded">
<!-- Chiamata al Dictionary -->
<Window.Resources>
<ResourceDictionary Source="OmagCutDictionary.xaml"/>
</Window.Resources>
<!-- Definizione della ImportPage -->
<Border Style="{StaticResource CustomBorder}" >
<Grid Name="SaveCurProjGrid" >
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="0.5*"/>
</Grid.RowDefinitions>
<TextBlock Name="TextStringTxBl" Grid.Row="0" FontSize="20" VerticalAlignment="Center" HorizontalAlignment="Center" />
<Grid Grid.Row="1" >
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.5*"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="0.5*"/>
</Grid.ColumnDefinitions>
<Button Name="YesBtn" Content="Si" Grid.Column="1" FontSize="20" IsCancel="True" />
<Button Name="NoBtn" Content="No" Grid.Column="2" FontSize="20" IsCancel="True" />
<Button Name="CancelBtn" Content="Annulla" Grid.Column="3" FontSize="20" IsCancel="True" />
</Grid>
</Grid>
</Border>
</Window>