CollabVMDesktopClient/CollabVMClient/Views/CollabVMScreenView.axaml

11 lines
601 B
Text
Raw Normal View History

2023-08-29 08:52:35 -04: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"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="1024" d:DesignHeight="768"
x:Class="CollabVMClient.Views.CollabVMScreenView"
Title="{Binding Title}"
Width="{Binding Width}" Height="{Binding Height}" CanResize="False">
<Image Name="screen" Source="{Binding Framebuffer}" Width="{Binding Width}" Height="{Binding Height}"/>
</Window>