21 lines
949 B
XML
21 lines
949 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="400" d:DesignHeight="400"
|
|
Width="400" Height="400"
|
|
x:Class="Example.Avalonia.MainWindow"
|
|
Title="Example.Avalonia">
|
|
|
|
<StackPanel Margin="20" Spacing="10">
|
|
<TextBox Name="TitleTextBox" Watermark="Title" UseFloatingWatermark="True" />
|
|
<TextBox Name="BodyTextBox" Watermark="Body" UseFloatingWatermark="True" />
|
|
|
|
<Button Click="Show_OnClick" Content="Show Notification" />
|
|
<Button Click="Schedule_OnClick" Content="Schedule notification (in 5 Seconds)" />
|
|
|
|
<TextBlock Foreground="Gray">Events:</TextBlock>
|
|
<ListBox Name="EventsListBox" Height="200" />
|
|
</StackPanel>
|
|
|
|
</Window> |