{"id":15059895,"url":"https://github.com/wherewhere/modernwpf","last_synced_at":"2025-10-04T19:31:25.244Z","repository":{"id":37844658,"uuid":"471935644","full_name":"wherewhere/ModernWpf","owner":"wherewhere","description":"Modern styles and controls for your WPF applications","archived":false,"fork":true,"pushed_at":"2023-08-08T19:26:40.000Z","size":33398,"stargazers_count":32,"open_issues_count":12,"forks_count":10,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-09-29T05:41:16.351Z","etag":null,"topics":["modernwpf","winui","wpf"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"Kinnara/ModernWpf","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wherewhere.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}},"created_at":"2022-03-20T09:40:35.000Z","updated_at":"2024-09-17T04:40:00.000Z","dependencies_parsed_at":"2023-01-19T14:04:33.763Z","dependency_job_id":null,"html_url":"https://github.com/wherewhere/ModernWpf","commit_stats":null,"previous_names":[],"tags_count":37,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wherewhere%2FModernWpf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wherewhere%2FModernWpf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wherewhere%2FModernWpf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wherewhere%2FModernWpf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wherewhere","download_url":"https://codeload.github.com/wherewhere/ModernWpf/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219876618,"owners_count":16554772,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["modernwpf","winui","wpf"],"created_at":"2024-09-24T22:49:35.100Z","updated_at":"2025-10-04T19:31:18.079Z","avatar_url":"https://github.com/wherewhere.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ModernWPF UI Library\n[![Gitter](https://badges.gitter.im/ModernWpf/community.svg)](https://gitter.im/ModernWpf/community?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge)\n\nModern styles and controls for your WPF applications.\n\n## Features\n* Modern styles and new features for [the majority of the stock WPF controls](https://github.com/Kinnara/ModernWpf/wiki/Controls#styled-controls).\n\n* Light and dark themes that can be easily customized. A high contrast theme is also included.\n\n* [Additional controls](https://github.com/Kinnara/ModernWpf/wiki/Controls#additional-controls) to help you build modern applications. Some are ported from the [Windows UI Library](https://github.com/microsoft/microsoft-ui-xaml).\n\n* Targets .NET Framework 4.5+, .NET Core 3+, and .NET 5+. Runs on Windows Vista SP2 and above.\n\n![Overview of controls (light theme)](docs/images/Controls.Light.png \"Overview of controls (light theme)\")\n\n## Quick start\n1. Create a new WPF app.\n\n2. Install from NuGet `Install-Package ModernWpfUI`.\n\n3. Edit App.xaml to following:\n```xaml\n\u003cApplication\n    ...\n    xmlns:ui=\"http://schemas.modernwpf.com/2019\"\u003e\n    \u003cApplication.Resources\u003e\n        \u003cResourceDictionary\u003e\n            \u003cResourceDictionary.MergedDictionaries\u003e\n                \u003cui:ThemeResources /\u003e\n                \u003cui:XamlControlsResources /\u003e\n            \u003c/ResourceDictionary.MergedDictionaries\u003e\n        \u003c/ResourceDictionary\u003e\n    \u003c/Application.Resources\u003e\n\u003c/Application\u003e\n```\n\n4. Edit MainWindow.xaml to following:\n```xaml\n\u003cWindow\n    ...\n    xmlns:ui=\"http://schemas.modernwpf.com/2019\"\n    ui:WindowHelper.UseModernWindowStyle=\"True\"\u003e\n    \u003cui:SimpleStackPanel Margin=\"12\" Spacing=\"24\"\u003e\n        \u003cTextBlock Text=\"My first ModernWPF app\" Style=\"{StaticResource HeaderTextBlockStyle}\" /\u003e\n        \u003cButton Content=\"I am a button\" /\u003e\n        \u003cButton Content=\"I am an accent button\" Style=\"{StaticResource AccentButtonStyle}\" /\u003e\n    \u003c/ui:SimpleStackPanel\u003e\n\u003c/Window\u003e\n```\n\n5. See [the wiki](https://github.com/Kinnara/ModernWpf/wiki) for more information.\n\n## Packages\n| NuGet Package | Latest Version |\n| --- | --- |\n| [ModernWpfUI][NuGet] | [![latest stable version](https://img.shields.io/nuget/v/ModernWpfUI)][NuGet] |\n| [ModernWpfUI.MahApps][NuGet.MahApps] | [![latest stable version](https://img.shields.io/nuget/v/ModernWpfUI.MahApps)][NuGet.MahApps] |\n\n## Screenshots\n![Overview of controls (dark theme)](docs/images/Controls.Dark.png \"Overview of controls (dark theme)\")\n\n![Control palette](docs/images/ControlPalette1.png \"Control palette\")\n\n![Easily customize colors](docs/images/Nighttime.png \"Easily customize colors\")\n\n![NumberBox](docs/images/NumberBox.png \"NumberBox\")\n\n![ContentDialog](docs/images/ContentDialog.png \"ContentDialog\")\n\n![DataGrid](docs/images/DataGrid.png \"DataGrid\")\n\n![ItemsRepeater](docs/images/ItemsRepeater.png \"ItemsRepeater\")\n\n![Custom title bar](docs/images/CustomTitleBar.Dark.png \"Custom title bar\")\n\n![Calendar](docs/images/Calendar.png \"Calendar\")\n\n![Menu](docs/images/Menu.png \"Menu\")\n\n![Progress controls](docs/images/Progress.png \"Progress controls\")\n\n![Color ramp](docs/images/ColorRamp.png \"Color ramp\")\n\n![Accent color palette](docs/images/AccentColorPalette.png \"Accent color palette\")\n\n![High contrast mode](docs/images/HighContrast.png \"High contrast mode\")\n\n[NuGet]: https://www.nuget.org/packages/ModernWpfUI/\n[NuGet.MahApps]: https://www.nuget.org/packages/ModernWpfUI.MahApps/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwherewhere%2Fmodernwpf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwherewhere%2Fmodernwpf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwherewhere%2Fmodernwpf/lists"}