Files
Renzo Lanza dc43af8650 LicenceManager 2.1c6:
- Aggiunto il campo "Note" di tipo LONGTEXT ai rivenditori, nel DB e nelle ResellerPage. Può essere Null.
2019-03-25 16:09:37 +00:00

69 lines
2.3 KiB
XML

<Grid x:Class="UpdateResellerPageV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
DataContext="{StaticResource UpdateResellerPageVM}">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<Border BorderBrush="Black"
BorderThickness="1"
Height="75"
Grid.Row="0">
<TextBlock Height="50"
Text="{Binding UpdateResellerMsg}"
FontSize="30"
TextAlignment="Center"/>
</Border>
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<TextBlock Text="{Binding NameMsg}"
Grid.Column="0"
Grid.Row="0"
Style="{StaticResource ParametersTextBlock}"/>
<EgtWPFLib5:EgtTextBox Text="{Binding Name}"
Grid.Column="1"
Grid.Row="0"
Style="{StaticResource ParameterTextBox}"/>
<TextBlock Text="{Binding NoteMsg}"
Grid.Column="0"
Grid.Row="1"
Style="{StaticResource ParametersTextBlock}"/>
<EgtWPFLib5:EgtTextBox Text="{Binding Note}"
Grid.Column="1"
Grid.Row="1"
Style="{StaticResource ParameterTextBox}"/>
<UniformGrid Grid.Row="3"
Columns="2"
Grid.ColumnSpan="2">
<Button Content="{Binding UpdateMsg}"
Command="{Binding UpdateReseller_Command}"
IsDefault="True"
Style="{StaticResource Page_Button}"/>
<Button Content="{Binding CancelMsg}"
Command="{Binding Cancel_Command}"
Style="{StaticResource Page_Button}"/>
</UniformGrid>
</Grid>
</Grid>