You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.4 KiB

<Window x:Class="TelnetCommunicator.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:TelnetCommunicator"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="60"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Label Grid.Row="0" Margin="0 0 0 0" Content=" Telnet Communicator"
VerticalContentAlignment="Center"
FontSize="30" FontWeight="Bold" Foreground="White" Background="Black"/>
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="150"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="0" Orientation="Vertical">
<Button x:Name="btnStatus" Content="Status" Click="btnStatus_Click"/>
</StackPanel>
<TextBox x:Name="tbMessage" Grid.Column="1"
VerticalScrollBarVisibility="Auto"
Background="Black" Foreground="LimeGreen"/>
</Grid>
</Grid>
</Window>