MainWindow.axaml 595 B

123456789101112
  1. <Window xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:vm="using:VeloeMonitorApp.ViewModels"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:views="clr-namespace:VeloeMonitorApp.Views"
  7. mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
  8. x:Class="VeloeMonitorApp.Views.MainWindow"
  9. Icon="/Assets/avalonia-logo.ico"
  10. Title="VeloeMonitorApp">
  11. <views:MainView />
  12. </Window>