presence/Presence.Desktop/Views/MainWindow.axaml

20 lines
883 B
Plaintext
Raw Normal View History

2024-12-18 07:19:58 +00:00
<Window xmlns="https://github.com/avaloniaui"
2024-11-24 18:05:17 +00:00
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
2024-12-18 07:19:58 +00:00
xmlns:app="clr-namespace:Presence.Desktop"
2024-11-24 18:05:17 +00:00
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
2024-12-18 07:19:58 +00:00
xmlns:vm="using:Presence.Desktop.ViewModels"
xmlns:reactiveUi="http://reactiveui.net"
2024-11-24 18:05:17 +00:00
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="Presence.Desktop.Views.MainWindow"
2024-12-16 04:10:04 +00:00
x:DataType="vm:MainWindowViewModel"
2024-12-18 07:19:58 +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>
2024-12-04 18:00:36 +00:00
</DockPanel>
2024-12-18 07:19:58 +00:00
</Window>