{"id":50967302,"url":"https://github.com/sdcb/mini-winform","last_synced_at":"2026-06-18T22:00:29.651Z","repository":{"id":358242360,"uuid":"1240615114","full_name":"sdcb/mini-winform","owner":"sdcb","description":"A small Win32 GUI toolkit for .NET Native AOT utilities.","archived":false,"fork":false,"pushed_at":"2026-05-16T13:25:02.000Z","size":72,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-16T13:29:05.713Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sdcb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-16T10:56:24.000Z","updated_at":"2026-05-16T13:25:06.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sdcb/mini-winform","commit_stats":null,"previous_names":["sdcb/mini-winform"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/sdcb/mini-winform","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdcb%2Fmini-winform","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdcb%2Fmini-winform/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdcb%2Fmini-winform/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdcb%2Fmini-winform/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sdcb","download_url":"https://codeload.github.com/sdcb/mini-winform/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdcb%2Fmini-winform/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34508867,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-18T02:00:06.871Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-18T22:00:22.188Z","updated_at":"2026-06-18T22:00:29.631Z","avatar_url":"https://github.com/sdcb.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sdcb.MiniWinForm [![NuGet Downloads](https://img.shields.io/nuget/dt/Sdcb.MiniWinForm?style=flat-square\u0026logo=nuget)](https://www.nuget.org/packages/Sdcb.MiniWinForm) [![License: MIT](https://img.shields.io/badge/license-MIT-green.svg?style=flat-square)](LICENSE)\n\nSdcb.MiniWinForm is a small Win32 GUI toolkit for .NET Native AOT utilities.\n\nThe goal is simple: keep a programming model that feels familiar to WinForms, but make it practical to publish very small GUI executables for Windows. It is a good fit for launchers, helper tools, config editors, and other tiny desktop utilities where a full WinForms deployment is heavier than necessary.\n\n## Why this project exists\n\n- Native AOT is great for tiny tools, but adding a GUI often increases size and complexity.\n- WinForms has a productive API shape, and this project intentionally stays close to that style.\n- Sdcb.MiniWinForm focuses on the subset that is most useful for small tools instead of trying to be a full WinForms replacement.\n\n## Install\n\n```bash\ndotnet add package Sdcb.MiniWinForm\n```\n\n## Quick example\n\n```csharp\nusing Sdcb.MiniWinForm;\n\nApplication.EnableVisualStyles();\n\nForm form = new()\n{\n    Text = \"Mini tool\",\n    Width = 360,\n    Height = 180,\n};\n\nButton button = new()\n{\n    Left = 20,\n    Top = 20,\n    Width = 120,\n    Text = \"Show dialog\",\n};\n\nbutton.Click += (_, _) =\u003e\n{\n    TaskDialogPage page = new()\n    {\n        Caption = \"MiniWinForm\",\n        Heading = \"Native AOT friendly GUI\",\n        Text = \"This is a tiny Win32 window with a WinForms-like API.\",\n    };\n    page.Buttons.Add(TaskDialogButton.OK);\n    _ = TaskDialog.ShowDialog(form, page);\n};\n\nform.Controls.Add(button);\nApplication.Run(form);\n```\n\n## Demo\n\nThe repository includes a small demo app in [demo/Sdcb.MiniWinForm.Demo](demo/Sdcb.MiniWinForm.Demo). It shows representative features such as:\n\n- forms and controls\n- menu items\n- list selection\n- progress bar updates\n- task dialogs\n- timers\n\n## Status\n\nThis project is designed for small Windows tools first. API coverage is intentionally limited and focused on the parts that are most useful when you want a GUI without giving up Native AOT size goals.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsdcb%2Fmini-winform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsdcb%2Fmini-winform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsdcb%2Fmini-winform/lists"}