mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
34 lines
1.3 KiB
XML
34 lines
1.3 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.UI.ViewModels"
|
|
xmlns:fakes="clr-namespace:Remotely.Desktop.UI.ViewModels.Fakes"
|
|
mc:Ignorable="d" d:DesignWidth="300" d:DesignHeight="100"
|
|
Width="300"
|
|
Height="100"
|
|
x:Class="Remotely.Desktop.UI.Views.SessionIndicatorWindow"
|
|
x:DataType="vm:ISessionIndicatorWindowViewModel"
|
|
Title="{Binding ProductName}"
|
|
Icon="{Binding WindowIcon}"
|
|
WindowStartupLocation="Manual"
|
|
Topmost="True"
|
|
SizeToContent="WidthAndHeight">
|
|
|
|
<Design.DataContext>
|
|
<fakes:FakeSessionIndicatorWindowViewModel />
|
|
</Design.DataContext>
|
|
|
|
<Grid Margin="15 10 40 15" ColumnDefinitions="Auto, 10, *">
|
|
<Image Grid.Column="0" Height="50" Width="50" Source="{Binding Icon}" VerticalAlignment="Center" />
|
|
<StackPanel Grid.Column="2" VerticalAlignment="Center">
|
|
<TextBlock Classes="SectionHeader">
|
|
Remote Control Active
|
|
</TextBlock>
|
|
<TextBlock>
|
|
A remote control session has started.
|
|
</TextBlock>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|