mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
17 lines
666 B
XML
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>
|