97c2466628
- aggiornata versione
58 lines
2.4 KiB
XML
58 lines
2.4 KiB
XML
<local:EffectorWindow x:Class="MultipleCopyWndV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgwWPFBaseLib="clr-namespace:EgwWPFBaseLib;assembly=EgwWPFBaseLib"
|
|
xmlns:local="clr-namespace:Effector.Plugin.Lib"
|
|
TitleBarHeight="40"
|
|
WindowStartupLocation="CenterOwner"
|
|
ShowInTaskbar="False"
|
|
SizeToContent="WidthAndHeight"
|
|
Title="{Binding sTitle}"
|
|
MinWidth="300"
|
|
Style="{StaticResource EffectorWindow.Dialog.NoClose}">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid Grid.Row="1"
|
|
Margin="30,10">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid Margin="0,10,0,20">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<TextBlock Text="{Binding sCopyNumberMsg}"
|
|
Margin="0,0,5,0"
|
|
Style="{StaticResource TextBlock.MultipleCopy}"/>
|
|
<TextBox Grid.Column="1"
|
|
Text="{Binding sCopyNumber}"
|
|
Width="40"
|
|
HorizontalAlignment="Right"
|
|
Margin="5,0,0,0"
|
|
Style="{StaticResource TextBox.MultipleCopy}"/>
|
|
</Grid>
|
|
<Grid Grid.Row="1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Button Content="{Binding sOkMsg}"
|
|
Command="{Binding Ok_Command}"
|
|
Margin="0,0,5,0"
|
|
Style="{StaticResource Button.Confirm}"/>
|
|
<Button Grid.Column="1"
|
|
Content="{Binding sCancelMsg}"
|
|
Command="{Binding Cancel_Command}"
|
|
Margin="5,0,0,0"
|
|
Style="{StaticResource Button.Confirm}"/>
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
</local:EffectorWindow>
|