{"id":21142439,"url":"https://github.com/victor-david/restless-toolkit","last_synced_at":"2026-01-25T16:32:57.303Z","repository":{"id":41960927,"uuid":"290556294","full_name":"victor-david/restless-toolkit","owner":"victor-david","description":"A lightweight toolkit for WPF applications. It includes base classes for MVVM, SQLite database - and provides various custom controls including custom window, tab, data grid, etc.","archived":false,"fork":false,"pushed_at":"2024-11-16T21:38:16.000Z","size":433,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-16T07:20:37.965Z","etag":null,"topics":["color-picker","database","sqlite","sqlite-database","sqlite3","toolkit","wpf","wpf-application","wpf-color-picker","wpf-controls","wpf-window","wpf-window-chrome"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/victor-david.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":"2020-08-26T17:03:12.000Z","updated_at":"2024-08-20T22:24:27.000Z","dependencies_parsed_at":"2024-02-25T03:31:56.994Z","dependency_job_id":"2cc10f45-aae8-44cb-9fa2-f7cfc5a053d6","html_url":"https://github.com/victor-david/restless-toolkit","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/victor-david/restless-toolkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victor-david%2Frestless-toolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victor-david%2Frestless-toolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victor-david%2Frestless-toolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victor-david%2Frestless-toolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/victor-david","download_url":"https://codeload.github.com/victor-david/restless-toolkit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victor-david%2Frestless-toolkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28755557,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T16:32:25.380Z","status":"ssl_error","status_checked_at":"2026-01-25T16:32:09.189Z","response_time":113,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["color-picker","database","sqlite","sqlite-database","sqlite3","toolkit","wpf","wpf-application","wpf-color-picker","wpf-controls","wpf-window","wpf-window-chrome"],"created_at":"2024-11-20T07:53:31.261Z","updated_at":"2026-01-25T16:32:57.280Z","avatar_url":"https://github.com/victor-david.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Restless Toolkit\n\nRestless Toolkit is a C# solution that consists of custom controls and utility classes that may be used in a WPF application.\nIt is an offshoot of the [Restless Tools](https://github.com/victor-david/restless-tools) project, which\nis no longer under active development. Going forward, **Restless Toolkit** will provide some of the same\ncontrols, improved ones, while removing obsolete functionality, and combining other functionality into a single package.\n\nThere are two .dll projects (available as nuget packages) and one .exe project:\n\n## Restless.Toolkit\n\n[![Nuget](https://img.shields.io/nuget/v/Restless.Toolkit.svg?style=flat-square)](https://www.nuget.org/packages/Restless.Toolkit/) \n\nThis .dll project contains custom controls, MVVM base classes, and other helper classes used\nfor presentation. Its target frameworks are **netcoreapp3.1** and **net462**. Custom controls in this package include:\n\n### AppWindow\nAn application window with custom title bar, borders and icons, and the ability to have the the application's main menu inside the title bar.\n### TabControl\nA custom tab control that supports re-ordering tabs via drag and drop, ability to set tab height and a consistent width,\nand the ability to maintain the status of tabs during tab switch.\n\n### ColorPicker\nA custom control that you can place in your view to choose a colors. Various properties allow you to customize its\nlook and functionality. The sample application included in this solution provides a demonstration.\n\n### DataGrid \nA custom data grid control that enables:\n\n* Bindable columns collection. This is an attached property that can be attached to a\n_System.Windows.Controls.DataGrid_ also, but to obtain other enhancements, you need to use\nthe toolkit's DataGrid.\n\n* Bind to multiple selected items. _SelectedItems_ on a standard WPF data grid\nis not a dependency property. The _SelectedItemsList_ property enables you to bind\nto the set of selected items.\n\n* As you show and hide view models, column state (column order and sort)\nis automatically saved and restored. You can obtain the state\nof the columns, save the state to storage (such as a database),\nand restore when your application starts up again.\n\n* Column header mode. When a header is right-clicked, you can display \na built in column selector popup that enables you to hide/show columns,\nexecute a command to perform your own actions, or supress the context menu\nthat may normally appear.\n\n\n## Restless.Toolkit.Core \n[![Nuget](https://img.shields.io/nuget/v/Restless.Toolkit.Core.svg?style=flat-square)](https://www.nuget.org/packages/Restless.Toolkit.Core/)\n\nThis .dll project contains classes that aren't part of presentation, such as base classes\nfor Sqlite databases. Its target frameworks are **netstandard2.0** and **netstandard2.1**.\n\n## Restless.App.Toolkit\n\nThis is a sample application to demo the custom tab control and others. It targets **netcoreapp3.1**.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvictor-david%2Frestless-toolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvictor-david%2Frestless-toolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvictor-david%2Frestless-toolkit/lists"}