Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/FrancescoCrimi/CiccioSoft.Collections
Generic IList and ISet implementations that implement INotifyCollectionChanged and IBindinList for netstandard2.0
https://github.com/FrancescoCrimi/CiccioSoft.Collections
bindinglist bindingset ibindinglist ilist inotifycollectionchanged iset netstandard20 observablecollection observableset uwp winforms wpf
Last synced: 13 days ago
JSON representation
Generic IList and ISet implementations that implement INotifyCollectionChanged and IBindinList for netstandard2.0
- Host: GitHub
- URL: https://github.com/FrancescoCrimi/CiccioSoft.Collections
- Owner: FrancescoCrimi
- License: mit
- Created: 2019-10-14T23:43:49.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-17T04:26:33.000Z (about 2 months ago)
- Last Synced: 2024-09-18T03:46:16.923Z (about 2 months ago)
- Topics: bindinglist, bindingset, ibindinglist, ilist, inotifycollectionchanged, iset, netstandard20, observablecollection, observableset, uwp, winforms, wpf
- Language: C#
- Homepage:
- Size: 749 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.TXT
Awesome Lists containing this project
README
# CiccioSoft.Collections
Author: Francesco Crimi
License: MIT
[![Nuget](https://img.shields.io/nuget/v/CiccioSoft.Collections)](https://www.nuget.org/packages/CiccioSoft.Collections/)This library contains generic IList and ISet implementations that implement INotifyCollectionChanged and IBindinList interface, see below
### `CiccioList`
implement `IList, IBindinList, IRaiseItemChangedEvents, INotifyCollectionChanged, INotifyPropertyChanged, IReadOnlyList` to use with WinForms, WPF and UWP.### `CiccioSet`
implement `ISet, IBindinList, IRaiseItemChangedEvents, INotifyCollectionChanged, INotifyPropertyChanged, IReadOnlyCollection` to use with WinForm, WPF and UWP.### `ObservableList`
implement `IList, INotifyCollectionChanged, INotifyPropertyChanged, IReadOnlyList` (like `System.Collections.ObjectModel.ObservableCollection`) to use with WPF or UWP.### `ObservableSet`
implement `ISet, INotifyCollectionChanged, INotifyPropertyChanged, IReadOnlyCollection` to use with WPF or UWP.### `BindingCollection`
implement `IList, IBindinList, IRaiseItemChangedEvents, IReadOnlyList` (like `System.ComponentModel.BindingList` but too light) to use with WinForms.
### `BindingSet`
implement `ISet, IBindinList, IRaiseItemChangedEvents, IReadOnlyCollection` to use with WinForms.