wpf-high-dpi-analyzer

Solid

Analyze and fix WPF applications for high DPI support, per-monitor DPI awareness, and scaling issues

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# wpf-high-dpi-analyzer Analyze and fix WPF applications for high DPI support. This skill identifies DPI-related issues and provides fixes for per-monitor DPI awareness, bitmap scaling, and layout problems on high-resolution displays. ## Capabilities - Detect DPI awareness configuration issues - Find hardcoded pixel values - Identify bitmap scaling problems - Check for per-monitor DPI support - Analyze transform and layout issues - Review app.manifest DPI settings - Generate fixes for common DPI problems - Test multi-monitor DPI scenarios ## Input Schema ```json { "type": "object", "properties": { "projectPath": { "type": "string", "description": "Path to the WPF project" }, "targetDpiMode": { "enum": ["system", "per-monitor", "per-monitor-v2"], "default": "per-monitor-v2" }, "checkCategories": { "type": "array", "items": { "enum": ["manifest", "hardcoded-pixels", "bitmaps", "layouts", "transforms", "fonts"] }, "default": ["manifest", "hardcoded-pixels", "bitmaps", "layouts"] }, "generateFixes": { "type": "boolean", "default": true } }, "required": ["projectPath"] } ``` ## Output Schema ```json { "type": "object", "properties": { "success": { "type": "boolean" }, "dpiMode": { "type": "string" }, "issues": { "type": "array", "items": { "type": "object", "properties": { "severity": { "enum": ["critical", "high",...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Related Skills