32 lines
1.5 KiB
Plaintext
32 lines
1.5 KiB
Plaintext
|
|
<Page x:Class="CeramicProjectTool.Pages.PermissionConfigPage"
|
||
|
|
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:CeramicProjectTool.Pages"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
d:DesignHeight="450" d:DesignWidth="800"
|
||
|
|
Title="权限配置" Loaded="Page_Loaded">
|
||
|
|
|
||
|
|
<Grid>
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="50"/>
|
||
|
|
<RowDefinition Height="*"/>
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<StackPanel Grid.Row="0">
|
||
|
|
|
||
|
|
</StackPanel>
|
||
|
|
<DataGrid Grid.Row="1" x:Name="permissonData" AutoGenerateColumns="False">
|
||
|
|
<DataGrid.Columns>
|
||
|
|
<DataGridTextColumn Header="模块名称" Binding="{Binding ModuleName}"/>
|
||
|
|
<DataGridTextColumn Header="表名" Binding="{Binding Table}"/>
|
||
|
|
<DataGridTextColumn Header="序号" Binding="{Binding SeqNo}"/>
|
||
|
|
<DataGridTextColumn Header="功能Id" Binding="{Binding Gnid}"/>
|
||
|
|
<DataGridTextColumn Header="功能" Binding="{Binding Gongneng}"/>
|
||
|
|
<DataGridTextColumn Header="角色Id" Binding="{Binding RuleId}"/>
|
||
|
|
<DataGridTextColumn Header="角色名称" Binding="{Binding RuleName}"/>
|
||
|
|
</DataGrid.Columns>
|
||
|
|
</DataGrid>
|
||
|
|
</Grid>
|
||
|
|
</Page>
|