Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/victor-david/restless-toolkit
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.
https://github.com/victor-david/restless-toolkit
color-picker database sqlite sqlite-database sqlite3 toolkit wpf wpf-application wpf-color-picker wpf-controls wpf-window wpf-window-chrome
Last synced: about 6 hours ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/victor-david/restless-toolkit
- Owner: victor-david
- License: gpl-3.0
- Created: 2020-08-26T17:03:12.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-12T16:10:56.000Z (8 days ago)
- Last Synced: 2024-11-12T17:23:22.019Z (8 days ago)
- Topics: color-picker, database, sqlite, sqlite-database, sqlite3, toolkit, wpf, wpf-application, wpf-color-picker, wpf-controls, wpf-window, wpf-window-chrome
- Language: C#
- Homepage:
- Size: 400 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Restless Toolkit
Restless Toolkit is a C# solution that consists of custom controls and utility classes that may be used in a WPF application.
It is an offshoot of the [Restless Tools](https://github.com/victor-david/restless-tools) project, which
is no longer under active development. Going forward, **Restless Toolkit** will provide some of the same
controls, improved ones, while removing obsolete functionality, and combining other functionality into a single package.There are two .dll projects (available as nuget packages) and one .exe project:
## Restless.Toolkit
[![Nuget](https://img.shields.io/nuget/v/Restless.Toolkit.svg?style=flat-square)](https://www.nuget.org/packages/Restless.Toolkit/)
This .dll project contains custom controls, MVVM base classes, and other helper classes used
for presentation. Its target frameworks are **netcoreapp3.1** and **net462**. Custom controls in this package include:### AppWindow
An application window with custom title bar, borders and icons, and the ability to have the the application's main menu inside the title bar.
### TabControl
A custom tab control that supports re-ordering tabs via drag and drop, ability to set tab height and a consistent width,
and the ability to maintain the status of tabs during tab switch.### ColorPicker
A custom control that you can place in your view to choose a colors. Various properties allow you to customize its
look and functionality. The sample application included in this solution provides a demonstration.### DataGrid
A custom data grid control that enables:* Bindable columns collection. This is an attached property that can be attached to a
_System.Windows.Controls.DataGrid_ also, but to obtain other enhancements, you need to use
the toolkit's DataGrid.* Bind to multiple selected items. _SelectedItems_ on a standard WPF data grid
is not a dependency property. The _SelectedItemsList_ property enables you to bind
to the set of selected items.* As you show and hide view models, column state (column order and sort)
is automatically saved and restored. You can obtain the state
of the columns, save the state to storage (such as a database),
and restore when your application starts up again.* Column header mode. When a header is right-clicked, you can display
a built in column selector popup that enables you to hide/show columns,
execute a command to perform your own actions, or supress the context menu
that may normally appear.## Restless.Toolkit.Core
[![Nuget](https://img.shields.io/nuget/v/Restless.Toolkit.Core.svg?style=flat-square)](https://www.nuget.org/packages/Restless.Toolkit.Core/)This .dll project contains classes that aren't part of presentation, such as base classes
for Sqlite databases. Its target frameworks are **netstandard2.0** and **netstandard2.1**.## Restless.App.Toolkit
This is a sample application to demo the custom tab control and others. It targets **netcoreapp3.1**.