20 lines
487 B
XML
20 lines
487 B
XML
<Window
|
|
x:Class="AvaloniaMenuIssue.MainWindow"
|
|
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"
|
|
Title="I am a test"
|
|
Width="400"
|
|
Height="650"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<TextBlock
|
|
FontSize="24"
|
|
Text="Hello I am a test!" />
|
|
|
|
|
|
</Grid>
|
|
|
|
</Window>
|