Skill

Ensure High Dpi

---

From winforms-dev
Install
1
Run in your terminal
$
npx claudepluginhub timheuer/ai-skills --plugin winforms-dev
Tool Access

This skill uses the workspace's default tool permissions.

Skill Content

Look at the code of the WinForms application running the winforms-specialist agent as a #subAgent and identify areas where high DPI settings can be applied. Provide recommendations on how to implement high DPI support, such as using appropriate scaling techniques, setting the AutoScaleMode property, and ensuring that images and controls are designed to scale properly on high DPI displays.

To ensure high DPI settings in your WinForms application, you can follow these recommendations:

  1. Set the AutoScaleMode property: In your form's constructor, set the AutoScaleMode property to Dpi. This will enable automatic scaling of controls based on the DPI settings of the display.
public MyForm()
{
    InitializeComponent();
    this.AutoScaleMode = AutoScaleMode.Dpi;
}
Stats
Parent Repo Stars0
Parent Repo Forks0
Last CommitMar 6, 2026