2
0
Files
controlmymonitormanagement/DellMonitorControl/ControlPanel.xaml

15 lines
762 B
Plaintext
Raw Normal View History

2023-07-02 22:17:57 +08:00
<UserControl x:Class="DellMonitorControl.ControlPanel"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
mc:Ignorable="d"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
Width="280" Height="300">
<Grid Background="#333333">
2023-07-03 01:51:09 +08:00
<StackPanel Name="sp" Margin="10">
<TextBlock Text="Monitor Control" Foreground="White" FontSize="16" FontWeight="Bold"/>
<TextBlock Text="Loading monitors..." Foreground="LightGray" FontSize="12" Margin="0,10,0,0"/>
2023-07-02 22:17:57 +08:00
</StackPanel>
</Grid>
</UserControl>