22 lines
827 B
XML
22 lines
827 B
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
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"
|
|
mc:Ignorable="d" d:DesignWidth="1000" d:DesignHeight="600"
|
|
x:Class="ChronoFlow.View.MainWindow"
|
|
Title="ChronoFlow">
|
|
<DockPanel LastChildFill="True">
|
|
<Button Content="🔓 Logout"
|
|
HorizontalAlignment="Right"
|
|
Margin="5"
|
|
Padding="8,4"
|
|
Click="Logout_Click"
|
|
DockPanel.Dock="Top"
|
|
Background="Transparent"
|
|
BorderBrush="Gray"/>
|
|
<Grid>
|
|
<ContentControl x:Name="ContentArea" />
|
|
</Grid>
|
|
</DockPanel>
|
|
|
|
</Window> |