2
0
Files
controlmymonitormanagement/DellMonitorControl/MainWindow.xaml

16 lines
686 B
Plaintext
Raw Normal View History

2023-07-02 22:17:57 +08:00
<Window x:Class="DellMonitorControl.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Monitor Control" Height="400" Width="320"
WindowStyle="ToolWindow"
ResizeMode="CanResize"
Background="#333333">
<ScrollViewer VerticalScrollBarVisibility="Auto" Margin="10">
<StackPanel Name="sp">
<TextBlock Text="Monitor Control" Foreground="White" FontSize="16" FontWeight="Bold"/>
<TextBlock Text="Loading..." Foreground="LightGray" FontSize="12" Margin="0,10,0,0"/>
</StackPanel>
</ScrollViewer>
2023-07-02 22:17:57 +08:00
</Window>