- Add VCP commands for brightness (10), contrast (12), input source (60) - Fix UTF-16 encoding for monitor data parsing - Add system tray app with monitor controls - Add localization for en, es, fr, de, zh, ja, pt, it, hi - Update to .NET 9.0 - Add LICENSE and README 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
762 B
XML
15 lines
762 B
XML
<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">
|
|
<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"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</UserControl>
|