20 lines
992 B
XML
20 lines
992 B
XML
<Window x:Class="PamhagenSysCtrl.MainWindow"
|
|
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:local="clr-namespace:PamhagenSysCtrl"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="450" Width="800">
|
|
<Grid>
|
|
<TextBox x:Name="PortInput" Text="COM1"
|
|
Margin="10,10,10,10" VerticalAlignment="Top" HorizontalAlignment="Left" Height="25" Width="80" FontSize="14" Padding="2,2,2,2"/>
|
|
<Button x:Name="ConnectButton" Content="Verbinden"
|
|
Margin="100,10,10,10" VerticalAlignment="Top" HorizontalAlignment="Left" Height="25" Width="80" FontSize="14"
|
|
Click="ConnectButton_Click"/>
|
|
|
|
<Grid x:Name="ButtonPanel" Margin="5,50,5,5">
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|