MainWindow.axaml 582 B

12345678910111213
  1. <Window xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
  6. x:Class="AppWithoutLifetime.MainWindow"
  7. Title="AppWithoutLifetime">
  8. <StackPanel>
  9. <TextBlock Text="Welcome to Avalonia!"/>
  10. <CheckBox Content="Welcome to Avalonia!"/>
  11. <Button Click="Open" Content="Open"/>
  12. </StackPanel>
  13. </Window>