51 lines
1.9 KiB
XML
51 lines
1.9 KiB
XML
<local:EgtWindow x:Class="MultipleCopyWndV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:Effector.Plugin.Lib"
|
|
TitleBarHeight="30"
|
|
WindowStartupLocation="CenterOwner"
|
|
ShowInTaskbar="False"
|
|
SizeToContent="WidthAndHeight">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="{Binding TitleBarHeight, RelativeSource={RelativeSource AncestorType={x:Type local:EgtWindow}}}"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<local:TitleBar/>
|
|
<Grid Grid.Row="1"
|
|
Margin="5">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid Margin="0,0,0,5">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<TextBlock Text="Numero di copie"
|
|
Margin="0,0,2.5,0"/>
|
|
<TextBox Grid.Column="1"
|
|
Text="{Binding sCopyNumber}"
|
|
Width="40"
|
|
Margin="2.5,0,0,0"/>
|
|
</Grid>
|
|
<Grid Grid.Row="1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Button Content="Ok"
|
|
Command="{Binding Ok_Command}"
|
|
Margin="0,0,2.5,0"/>
|
|
<Button Grid.Column="1"
|
|
Content="Annulla"
|
|
Command="{Binding Cancel_Command}"
|
|
Margin="2.5,0,0,0"/>
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
</local:EgtWindow>
|