年度变更建库软件5.0版本
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.

28 lines
1.4 KiB

<UserControl x:Class="Kingo.Plugin.MapView.Views.FrmFeatureAttribute"
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"
xmlns:kui="clr-namespace:KUI;assembly=KUI"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<UserControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/KUI;component/Themes/Style/KComboBoxStyle.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</UserControl.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="125"/>
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<TreeView x:Name="tvDataList" SelectedItemChanged="tvDataList_SelectedItemChanged" PreviewMouseUp="tvDataList_PreviewMouseUp" MouseDown="tvDataList_MouseDown">
<TreeViewItem />
</TreeView>
<GridSplitter VerticalAlignment="Bottom" HorizontalAlignment="Stretch" Height="5" />
<local:AttributeEdit x:Name="attrEdit" Grid.Row="1"/>
</Grid>
</UserControl>