Remotely/Desktop.UI/Views/MainWindow.axaml
2024-07-16 09:25:15 -07:00

17 lines
666 B
XML

<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:views="clr-namespace:Remotely.Desktop.UI.Views"
xmlns:vm="clr-namespace:Remotely.Desktop.UI.ViewModels"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignWidth="500" d:DesignHeight="300"
x:Class="Remotely.Desktop.UI.Views.MainWindow"
x:DataType="vm:MainWindowViewModel"
Icon="{Binding WindowIcon}"
Title="{Binding ProductName}"
Height="325" Width="400">
<views:MainView />
</Window>