Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

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.