Add brightness/contrast sliders, input source switching, and 9-language localization
- 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>
2026-01-03 22:11:35 -05:00
|
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2022-05-23 00:58:58 +08:00
|
|
|
xmlns:sys="clr-namespace:System;assembly=mscorlib">
|
Add brightness/contrast sliders, input source switching, and 9-language localization
- 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>
2026-01-03 22:11:35 -05:00
|
|
|
|
|
|
|
|
<!-- Application (Default: English) -->
|
|
|
|
|
<sys:String x:Key="AppTitle">Monitor Control Management</sys:String>
|
|
|
|
|
<sys:String x:Key="ScreenSwitch">Screen Switch</sys:String>
|
|
|
|
|
|
|
|
|
|
<!-- Controls -->
|
|
|
|
|
<sys:String x:Key="Brightness">Brightness</sys:String>
|
|
|
|
|
<sys:String x:Key="Contrast">Contrast</sys:String>
|
|
|
|
|
<sys:String x:Key="InputSource">Input Source</sys:String>
|
|
|
|
|
<sys:String x:Key="Power">Power</sys:String>
|
|
|
|
|
|
|
|
|
|
<!-- Power States -->
|
|
|
|
|
<sys:String x:Key="PowerOn">Power On</sys:String>
|
|
|
|
|
<sys:String x:Key="Sleep">Sleep</sys:String>
|
|
|
|
|
<sys:String x:Key="PowerOff">Power Off</sys:String>
|
|
|
|
|
|
|
|
|
|
<!-- Window Controls -->
|
|
|
|
|
<sys:String x:Key="Minimize">Minimize</sys:String>
|
|
|
|
|
<sys:String x:Key="Exit">Exit</sys:String>
|
|
|
|
|
<sys:String x:Key="Loading">Loading...</sys:String>
|
|
|
|
|
|
|
|
|
|
<!-- Error Messages -->
|
|
|
|
|
<sys:String x:Key="LoadConfigErr">Failed to load configuration: </sys:String>
|
|
|
|
|
<sys:String x:Key="SaveConfigErr">Failed to save configuration: </sys:String>
|
|
|
|
|
|
|
|
|
|
</ResourceDictionary>
|