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

25 lines
907 B
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"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
Width="300"
Height="100"
x:Class="Remotely.Desktop.Linux.Views.SessionIndicatorWindow"
Background="#2b2726"
Title="Remotely Desktop"
Icon="/Assets/favicon.ico"
WindowStartupLocation="Manual"
Topmost="True"
SizeToContent="WidthAndHeight">
<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>