47 lines
1.6 KiB
XML
47 lines
1.6 KiB
XML
<UserControl
|
|
x:Class="BeWo.View.Controls.ListboxSelectControl"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
|
|
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:validation="clr-namespace:BeWo.Validation"
|
|
d:DesignHeight="230"
|
|
d:DesignWidth="300"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<ListBox
|
|
x:Name="Listbox"
|
|
Grid.ColumnSpan="3"
|
|
Margin="3,3,3,0"
|
|
FontSize="14"
|
|
MouseDoubleClick="Listbox_OnMouseDoubleClick"
|
|
SelectionMode="Single" />
|
|
<Button
|
|
x:Name="SelectButton"
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
Margin="3"
|
|
Click="SelectButton_Click"
|
|
Content=" Auswählen " />
|
|
<Button
|
|
x:Name="CancelButton"
|
|
Grid.Row="1"
|
|
Grid.Column="2"
|
|
Margin="3"
|
|
Click="CancelButton_Click"
|
|
Content=" Abbrechen " />
|
|
|
|
</Grid>
|
|
</UserControl>
|