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.
22 lines
1.2 KiB
22 lines
1.2 KiB
<window:BaseWindow |
|
xmlns:window="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" |
|
x:Class="Kingo.Plugin.MapView.Views.FrmFeatureAttributes" |
|
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" |
|
mc:Ignorable="d" |
|
d:DesignHeight="450" d:DesignWidth="800"> |
|
<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> |
|
</window:BaseWindow>
|
|
|