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.
23 lines
1.7 KiB
23 lines
1.7 KiB
<UserControl x:Class="Kingo.Plugin.MapView.Views.AppMenuView.UCShortcutKeyDescription" |
|
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:Kingo.Plugin.MapView.Views.AppMenuView" |
|
xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid" |
|
mc:Ignorable="d" |
|
d:DesignHeight="450" d:DesignWidth="400"> |
|
<Grid> |
|
<dxg:GridControl AutoPopulateColumns="False" Name="gridPackage" AutoGenerateColumns="KeepOld" SelectionMode="Row" Background="Black" ScrollViewer.CanContentScroll="True" FontSize="15"> |
|
<dxg:GridControl.View> |
|
<dxg:TableView Name="viewPackage" ShowCheckBoxSelectorColumn="False" ShowTotalSummary="False" MultiSelectMode="None" IsTotalSummaryMenuEnabled="False" AllowGroupSummaryCascadeUpdate="False" ShowFixedTotalSummary="False" ShowSearchPanelMode="Never" ShowGroupPanel="False" ShowAutoFilterRow="False" AllowEditing="False" BestFitMode="VisibleRows" > |
|
</dxg:TableView> |
|
</dxg:GridControl.View> |
|
<dxg:GridControl.Columns> |
|
<dxg:GridColumn Header="功能" Width="*" Binding="{Binding name}"/> |
|
<dxg:GridColumn Header="快捷键" Width="*" Binding="{Binding code }"/> |
|
</dxg:GridControl.Columns> |
|
</dxg:GridControl> |
|
</Grid> |
|
</UserControl>
|
|
|