26 lines
1.4 KiB
XML
26 lines
1.4 KiB
XML
<UserControl x:Class="ENI2.Controls.LocodeControl"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:p="clr-namespace:ENI2.Properties"
|
|
xmlns:local="clr-namespace:ENI2.Controls"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="30" d:DesignWidth="300">
|
|
|
|
<Grid Grid.Column="1" Grid.Row="0" Width="Auto">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<xctk:WatermarkComboBox Grid.Column="0" x:Name="comboBoxLocode" Margin="2" IsEditable="True" Watermark="{x:Static p:Resources.textTypeLocode}"
|
|
VerticalContentAlignment="Center"
|
|
TextBoxBase.TextChanged="ComboBox_TextChanged"
|
|
SelectionChanged="comboBoxLocode_SelectionChanged" PreviewKeyDown="comboBoxLocode_PreviewKeyDown"/>
|
|
|
|
|
|
<Image Name="imageLocodeState" Grid.Column="1" Source="../Resources/bullet_ball_grey.png" />
|
|
</Grid>
|
|
</UserControl>
|