{"id":14965105,"url":"https://github.com/mameolan/avalonia.extendedtoolkit","last_synced_at":"2025-04-07T05:12:11.369Z","repository":{"id":42210970,"uuid":"205510785","full_name":"mameolan/Avalonia.ExtendedToolkit","owner":"mameolan","description":"Extended Controls for Avalonia UI","archived":false,"fork":false,"pushed_at":"2024-08-05T19:28:27.000Z","size":1826,"stargazers_count":256,"open_issues_count":39,"forks_count":20,"subscribers_count":11,"default_branch":"master","last_synced_at":"2024-10-30T01:02:39.831Z","etag":null,"topics":["avalonia","csharp","xaml"],"latest_commit_sha":null,"homepage":"","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/mameolan.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}},"created_at":"2019-08-31T07:20:08.000Z","updated_at":"2024-10-25T15:54:37.000Z","dependencies_parsed_at":"2024-11-13T13:03:33.605Z","dependency_job_id":"b20971a8-3861-4b91-ac94-e0e3d8ea4014","html_url":"https://github.com/mameolan/Avalonia.ExtendedToolkit","commit_stats":{"total_commits":249,"total_committers":6,"mean_commits":41.5,"dds":0.6586345381526104,"last_synced_commit":"ba28fa403b0ff08fcbcdf0c7137abfb93cde2408"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mameolan%2FAvalonia.ExtendedToolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mameolan%2FAvalonia.ExtendedToolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mameolan%2FAvalonia.ExtendedToolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mameolan%2FAvalonia.ExtendedToolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mameolan","download_url":"https://codeload.github.com/mameolan/Avalonia.ExtendedToolkit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247595335,"owners_count":20963943,"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":["avalonia","csharp","xaml"],"created_at":"2024-09-24T13:34:13.769Z","updated_at":"2025-04-07T05:12:11.350Z","avatar_url":"https://github.com/mameolan.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n# Avalonia.ExtendedToolkit\n\n\n![alt text](github/Images/Avalonia.ExampleApp-Overview.gif \"Main application\")   \n\n\n\nAvalonia.ExtendedTool wants to port some controls from the WPF to Avalonia.\n\nMost styles / ideas where taken from:\n\n- [MahApps Toolkit](https://github.com/MahApps/MahApps.Metro) \n- [Extended WPF Toolkit](https://github.com/xceedsoftware/wpftoolkit)\n- [WPF Toolkit (Microsoft)](https://github.com/dotnet/wpf)\n\netc.\n\n**Contributor are welcome.**\n\n### Nugets\n------\n\n- [Avalonia.Controlz](https://www.nuget.org/packages/mameolan.Avalonia.Controlz/)\n- [Avalonia.ExtendedToolkit](https://www.nuget.org/packages/mameolan.Avalonia.ExtendedToolkit/)\n\n\n### Usage\n------\nPlease have a look at the example app or in the [wiki](https://github.com/mameolan/Avalonia.ExtendedToolkit/wiki) on how to use the controls.\n\n### Solution Structure\n\n------\n\n- Avalonia.Controlz: library which can be merge to the Avalonia Project \n- Avalonia.ExampleApp: Example Application for the Extended Toolkit\n- Avalonia.ExtendedToolkit: library which have special controls and styles\n\n\n\n### How to add the styles to your project\n\n------\n\n```xml\t\n\u003cApplication.Styles\u003e\n\t\u003cStyleInclude Source=\"avares://Avalonia.Themes.Default/DefaultTheme.axaml\"/\u003e\n\t\u003cStyleInclude Source=\"resm:Avalonia.Controls.DataGrid.Themes.Default.xaml?assembly=Avalonia.Controls.DataGrid\" /\u003e\n\t\u003c!-- without datagrid --\u003e\n    \u003cStyleInclude Source=\"avares://Avalonia.ExtendedToolkit/Styles/Generic.axaml\"/\u003e\n    \u003c!-- includes datagrid seperately: --\u003e\n    \u003cStyleInclude Source=\"avares://Avalonia.ExtendedToolkit/Styles/Default.Datagrid.axaml\"/\u003e\n    \n    \u003c!-- with datagrid --\u003e\n    \u003c!-- \u003cStyleInclude Source=\"avares://Avalonia.ExtendedToolkit/Styles/Generic.All.axaml\"/\u003e --\u003e\n\u003c/Application.Styles\u003e\n\n```\n\nSet Color in App.axaml Styles like this i.e.:\n\n```xml\n\u003cStyleInclude Source=\"avares://Avalonia.ExtendedToolkit/Styles/Themes/Dark.Blue.axaml\"/\u003e\n```\n\nor use the ThemeManager (App.axaml.cs):\n\n```cs\npublic override void OnFrameworkInitializationCompleted()\n{\n   if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)\n   {\n        var window=new MainWindow();\n\t\tThemeManager.Instance.EnableTheme(window);\n        desktop.MainWindow = window;\n   }\n\n   base.OnFrameworkInitializationCompleted();\n}\n```\n\n### AppBuilder Setup:\n\n```cs\nappBuilder\n.UsePlatformDetect()\n...\n.UseSkia()\n.UseReactiveUI() //required\n.UseAvaloniaExtended() //for i.e. dialog service\n...\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmameolan%2Favalonia.extendedtoolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmameolan%2Favalonia.extendedtoolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmameolan%2Favalonia.extendedtoolkit/lists"}