875000091e
- Implementata gestione database utensili.
42 lines
1.8 KiB
XML
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>
|