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}"
|
2023-08-29 13:39:51 -04:00
|
|
|
Width="{Binding Width}" Height="{Binding WindowHeight}" CanResize="False">
|
|
|
|
<StackPanel Orientation="Vertical">
|
|
|
|
<DockPanel>
|
|
|
|
<Menu DockPanel.Dock="Top" Height="34">
|
|
|
|
<MenuItem Header="_CollabVM">
|
|
|
|
<MenuItem Header="{Binding ToggleTurnBtnText}" Command="{Binding ToggleTurn}"/>
|
|
|
|
<MenuItem Header="Exit" Name="exit"/>
|
|
|
|
</MenuItem>
|
|
|
|
</Menu>
|
|
|
|
</DockPanel>
|
|
|
|
<Image Name="screen" Source="{Binding Framebuffer}" Width="{Binding Width}" Height="{Binding Height}"/>
|
|
|
|
</StackPanel>
|
2023-08-29 08:52:35 -04:00
|
|
|
</Window>
|