2024-03-11 05:12:02 +00:00
|
|
|
<UserControl x:Class="InSituLaboratory.Views.Pages.Dialogs.ModifyRoleView"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:local="clr-namespace:InSituLaboratory.Views.Pages.Dialogs"
|
|
|
|
|
mc:Ignorable="d" Height="200" Width="350"
|
2024-04-10 09:50:54 +00:00
|
|
|
FontFamily="{StaticResource DigitalDisplay}"
|
2024-03-11 05:12:02 +00:00
|
|
|
Template="{StaticResource DialogViewTemplate}">
|
|
|
|
|
<Grid Margin="10">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition/>
|
|
|
|
|
<RowDefinition Height="2*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="70"/>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<TextBlock Text="角色名称" VerticalAlignment="Center" Foreground="#888"/>
|
|
|
|
|
<TextBlock Text="角色描述" Grid.Row="1" VerticalAlignment="Top" Foreground="#888"/>
|
|
|
|
|
|
|
|
|
|
<TextBox Grid.Column="1" Height="28" Name="tb_name"
|
|
|
|
|
Text="{Binding RoleName,ValidatesOnNotifyDataErrors=True}"
|
|
|
|
|
Style="{StaticResource ValidationTextBoxStyle}"/>
|
|
|
|
|
<TextBox Grid.Row="1" Grid.Column="1" Margin="0,2"
|
|
|
|
|
Text="{Binding RoleDesc}"
|
|
|
|
|
TextWrapping="Wrap" ScrollViewer.VerticalScrollBarVisibility="Auto"
|
|
|
|
|
Style="{StaticResource NormalTextBoxStyle}"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</UserControl>
|