Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dahall/groupcontrols
.NET controls that display multiple sub-controls without creating a unique window handle for each child. Instead each child is drawn using the default renderers.
https://github.com/dahall/groupcontrols
controls csharp dotnet winforms
Last synced: 2 months ago
JSON representation
.NET controls that display multiple sub-controls without creating a unique window handle for each child. Instead each child is drawn using the default renderers.
- Host: GitHub
- URL: https://github.com/dahall/groupcontrols
- Owner: dahall
- License: other
- Created: 2017-07-01T20:24:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-06T21:05:16.000Z (over 1 year ago)
- Last Synced: 2024-10-04T13:18:17.003Z (3 months ago)
- Topics: controls, csharp, dotnet, winforms
- Language: C#
- Homepage:
- Size: 396 KB
- Stars: 21
- Watchers: 5
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
- awesome-dotnet-winforms - GroupControls
README
# Group Controls for .NET WinForms
> Controls that display multiple sub-controls without creating a unique window handle for each child. Instead each child is drawn using the default renderers and its space and status are managed by the parent. Currently there are the following controls:
* RadioButtonList (similar the ASP.NET control)
* CheckBoxList![](GroupControls.jpg)
In the Source Code, you will find an example project. Of note along with the controls are two generic classes. The first is a clone of `List` called `EventedList`. It has all the same methods, but adds events on all changes to the list or its items. The second is a `SparseArray` that behaves the same as a `List`, but is built on top of a `Dictionary` so that you can address items that have not been added and have non-sequential indexes.