XIVChat/XIVChat Desktop/MainWindow.xaml

26 lines
997 B
XML

<Window x:Class="XIVChat_Desktop.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:XIVChat_Desktop"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Menu Grid.Row="1">
<MenuItem Header="XIVChat">
<MenuItem Header="Connect"/>
<MenuItem Header="Disonnect" IsEnabled="False"/>
</MenuItem>
</Menu>
<ListView Grid.Row="2"></ListView>
<TextBox Grid.Row="3" TextWrapping="Wrap"/>
</Grid>
</Window>