ui-convert-extractor-winforms

Installation
SKILL.md

WinForms Extractor

Converts Windows Forms designer code (.Designer.cs) into Design IR. WinForms uses absolute positioning and imperative control creation, making it unique among extraction targets.

What This Extracts

WinForms stores UI in InitializeComponent() methods:

private void InitializeComponent()
{
    this.btnLogin = new System.Windows.Forms.Button();
    this.txtEmail = new System.Windows.Forms.TextBox();
    this.lblTitle = new System.Windows.Forms.Label();

    // btnLogin
    this.btnLogin.Location = new System.Drawing.Point(120, 200);
    this.btnLogin.Size = new System.Drawing.Size(120, 36);
Related skills
Installs
2
First Seen
Apr 10, 2026