presence_new/Presence.Desktop/Views/MainWindow.axaml

19 lines
921 B
Plaintext
Raw Permalink Normal View History

2024-12-05 06:55:28 +00:00
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
2024-12-13 07:21:14 +00:00
xmlns:app="clr-namespace:Presence.Desktop"
2024-12-05 06:55:28 +00:00
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
2024-12-13 07:21:14 +00:00
xmlns:vm="using:Presence.Desktop.ViewModels"
xmlns:reactiveUi="http://reactiveui.net"
2024-12-05 06:55:28 +00:00
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="Presence.Desktop.Views.MainWindow"
x:DataType="vm:MainWindowViewModel"
2024-12-13 07:21:14 +00:00
Title="MainWindow">
<DockPanel>
<reactiveUi:RoutedViewHost Router="{Binding Router}" DockPanel.Dock="Right" Background="AliceBlue">
<reactiveUi:RoutedViewHost.ViewLocator>
<app:ViewLocator/>
</reactiveUi:RoutedViewHost.ViewLocator>
</reactiveUi:RoutedViewHost>
</DockPanel>
</Window>