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.8 KiB
22 lines
1.8 KiB
<UserControl x:Class="Kingo.Plugin.MapView.Views.FeatureAttribute.UCFieldsInfo" |
|
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:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" |
|
xmlns:comboBox="clr-namespace:KUI.ComboBox;assembly=KUI" |
|
xmlns:local="clr-namespace:Kingo.Plugin.MapView.Views.FeatureAttribute" |
|
mc:Ignorable="d" |
|
d:DesignHeight="450" d:DesignWidth="800"> |
|
<Grid> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition MinWidth="100" Width="auto" /> |
|
<ColumnDefinition /> |
|
</Grid.ColumnDefinitions> |
|
<Label x:Name="lable" Content="{Binding Key}" HorizontalContentAlignment="Right" VerticalAlignment="Center"/> |
|
<comboBox:AutoCompleteBox Grid.Column="1" Name="ComboBox" Background="White" KeyFieldName="ID" IsReadOnly="True" IsEditable="True" IsGroup="True" ParentFieldName="PID" DisplayMemberPath="NAME" ValueMemberPath="CODE" Visibility="Collapsed" BorderBrush="AliceBlue" /> |
|
<!--<dxe:CheckEdit Grid.Column="1" x:Name="CheckBox" Visibility="Collapsed" Background="White" BorderThickness="0" ShowBorder="False" />--> |
|
<TextBox Grid.Column="1" Text="{Binding Path=Value,RelativeSource={RelativeSource Mode=TemplatedParent},Mode=TwoWay,UpdateSourceTrigger=LostFocus}" x:Name="TextBox" Background="White" Visibility="Visible" /> |
|
<!--<dxe:SpinEdit Grid.Column="1" x:Name="SpinEdit" Background="White" HorizontalContentAlignment="Left" Visibility="Collapsed" ShowBorder="False" />--> |
|
</Grid> |
|
</UserControl>
|
|
|