18 lines
1020 B
XML
18 lines
1020 B
XML
<mah:MetroWindow x:Class="ZKuP.COMSelector"
|
|
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:mah="http://metro.mahapps.com/winfx/xaml/controls"
|
|
xmlns:local="clr-namespace:ZKuP"
|
|
mc:Ignorable="d"
|
|
Title="Leser auswählen" Height="185" Width="280">
|
|
<Grid>
|
|
<StackPanel Orientation="Vertical">
|
|
<TextBlock Text="COM Port des Lesers wählen:" Foreground="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}" Margin="10"/>
|
|
<ComboBox x:Name="cbCOMList" Height="30" Margin="10" SelectionChanged="cbCOMList_SelectionChanged"/>
|
|
<Button x:Name="btnSave" Content="Speichern" VerticalAlignment="Bottom" Margin="10,25,10,10" Click="btnSave_Click"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</mah:MetroWindow>
|