2025-02-15 22:40:11 +01:00

15 lines
919 B
XML

<Window x:Class="MD11_Localizer_Capture.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:MD11_Localizer_Capture"
mc:Ignorable="d"
Title="MainWindow" SizeToContent="WidthAndHeight" ResizeMode="CanResizeWithGrip">
<Grid>
<Button x:Name="buttonConnection" Content="Connect" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="90"
Height="30" Click="ButtonConnection_Click"/>
<TextBox x:Name="BlueValues" HorizontalAlignment="Left" Height="360" Margin="105,10,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="704"/>
</Grid>
</Window>