MainWindow.xaml 726 B

123456789101112131415161718
  1. <Window xmlns="https://github.com/avaloniaui" MinWidth="500" MinHeight="300"
  2. xmlns:pages="clr-namespace:ControlCatalog.Pages"
  3. Title="Avalonia Control Gallery"
  4. Icon="/Assets/test_icon.ico"
  5. xmlns:local="clr-namespace:ControlCatalog"
  6. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  7. xmlns:vm="clr-namespace:ControlCatalog.ViewModels"
  8. xmlns:v="clr-namespace:ControlCatalog.Views"
  9. x:Class="ControlCatalog.MainWindow">
  10. <Window.DataTemplates>
  11. <DataTemplate DataType="vm:NotificationViewModel">
  12. <v:CustomNotificationView />
  13. </DataTemplate>
  14. </Window.DataTemplates>
  15. <Panel>
  16. <local:MainView/>
  17. </Panel>
  18. </Window>