Remotely/Desktop.Linux/Views/SessionIndicatorWindow.axaml
2021-07-29 07:56:55 -07:00

30 lines
1.1 KiB
XML

<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"
xmlns:vm="clr-namespace:Remotely.Desktop.Linux.ViewModels;assembly=Remotely_Desktop"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
Width="300"
Height="100"
x:Class="Remotely.Desktop.Linux.Views.SessionIndicatorWindow"
Background="#2b2726"
Title="{Binding ProductName}p"
Icon="{Binding WindowIcon}"
WindowStartupLocation="Manual"
Topmost="True"
SizeToContent="WidthAndHeight">
<Window.DataContext>
<vm:BrandedViewModelBase />
</Window.DataContext>
<StackPanel Margin="15 10 40 15">
<TextBlock Classes="SectionHeader" Foreground="White">
Remote Control Started
</TextBlock>
<TextBlock Foreground="LightGray">
A remote control session has started.
</TextBlock>
</StackPanel>
</Window>