You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
2.5 KiB
34 lines
2.5 KiB
<UserControl x:Class="Kingo.Plugin.BGSetting.View.ViewSystemSetting.ViewAttributeShowSetting" |
|
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:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid" |
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" |
|
mc:Ignorable="d" d:DesignHeight="450" d:DesignWidth="880"> |
|
<Grid Background="White"> |
|
<GroupBox Header="属性页面配置详情" HorizontalAlignment="Stretch" Margin="8" VerticalAlignment="Stretch"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="30"/> |
|
<RowDefinition /> |
|
<RowDefinition Height="30"/> |
|
</Grid.RowDefinitions> |
|
<Label Content="图层配置:" VerticalContentAlignment="Center" /> |
|
<dxg:GridControl x:Name="dgCtrl" Grid.Row="1" AutoGenerateColumns="None" Margin="5" EnableSmartColumnsGeneration="True" > |
|
<dxg:GridControl.View> |
|
<dxg:TableView AllowEditing="False" CellValueChanging="TableView_CellValueChanged" IsColumnMenuEnabled="False" AllowGrouping="False" AllowColumnMoving="False" AllowColumnFiltering="False" AllowResizing="True" AllowSorting="False" ShowGroupPanel="False"/> |
|
</dxg:GridControl.View> |
|
<dxg:GridColumn FieldName="Name" Header="控件名称" ReadOnly="True" Width="150" HorizontalHeaderContentAlignment="Center" IsEnabled="False"/> |
|
<dxg:GridColumn FieldName="ViewName" Header="控件所属" ReadOnly="True" Width="150" HorizontalHeaderContentAlignment="Center" IsEnabled="False"/> |
|
<dxg:GridColumn FieldName="Type" Header="系统类型" ReadOnly="True" Width="150" HorizontalHeaderContentAlignment="Center" IsEnabled="False"/> |
|
<dxg:GridColumn FieldName="IsShow" Header="是否显示" Width="120" AllowSorting="False" AllowMoving="False" AllowEditing="True" HorizontalHeaderContentAlignment="Center" > |
|
<dxg:GridColumn.EditSettings> |
|
<dxe:CheckEditSettings/> |
|
</dxg:GridColumn.EditSettings> |
|
</dxg:GridColumn> |
|
</dxg:GridControl> |
|
</Grid> |
|
</GroupBox> |
|
</Grid> |
|
</UserControl>
|
|
|