Files
omagoffice/CompoTrfDataWindow/CompoTrfDataWindowV.xaml
T
Emmanuele Sassi 84bddeec9a OmagOFFICE :
- Gestione dati TRF.
- Stime tempi e costi.
- Lavorazioni da sotto.
2018-08-10 16:40:06 +00:00

65 lines
2.3 KiB
XML

<EgtWPFLib5:EgtCustomWindow x:Class="CompoTrfDataWindowV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:OmagOFFICE="clr-namespace:OmagOFFICE"
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
Title="{Binding TitleMsg}"
IsMinimizable="False"
ShowInTaskbar="False"
Style="{DynamicResource {x:Type EgtWPFLib5:EgtCustomWindow}}"
WindowStartupLocation="CenterOwner"
MinWidth="270" MinHeight="250"
ResizeMode="NoResize">
<StackPanel>
<UniformGrid Columns="2">
<TextBlock Text="{Binding OrdCodeMsg}"
Style="{StaticResource OptionTextBlock}"/>
<EgtWPFLib5:EgtTextBox Text="{Binding OrdCode}"/>
<TextBlock Text="{Binding OrdDescMsg}"
Style="{StaticResource OptionTextBlock}"/>
<EgtWPFLib5:EgtTextBox Text="{Binding OrdDesc}"/>
<TextBlock Text="{Binding MatCodeMsg}"
Style="{StaticResource OptionTextBlock}"/>
<EgtWPFLib5:EgtTextBox Text="{Binding MatCode}"/>
<TextBlock Text="{Binding SurfCodeMsg}"
Style="{StaticResource OptionTextBlock}"/>
<EgtWPFLib5:EgtTextBox Text="{Binding SurfCode}"/>
<TextBlock Text="{Binding ThicknessMsg}"
Style="{StaticResource OptionTextBlock}"/>
<EgtWPFLib5:EgtTextBox Text="{Binding Thickness}"/>
<Grid Name="ButtonsGrid">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>
<Button Name="OkBtn"
Grid.Column="1"
Style="{StaticResource OptionPanel_TextButton}"
IsCancel="True">
</Button>
<Button Name="CancelBtn"
Grid.Column="3"
Style="{StaticResource OptionPanel_TextButton}"
IsCancel="True">
</Button>
</Grid>
</UniformGrid>
</StackPanel>
</EgtWPFLib5:EgtCustomWindow>