Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IBindingList.cs « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8de1b197f17356a46647567747dcfb9b05532a26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
//
// System.ComponentModel.IBindingList.cs
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//
// (C) Ximian, Inc
//

using System.Collections;

namespace System.ComponentModel
{
	/// <summary>
	/// Provides the features required to support both complex and simple scenarios when binding to a data source.
	/// </summary>
	public interface IBindingList : IList, ICollection, IEnumerable
	{
		void AddIndex (PropertyDescriptor property);

		object AddNew ();

		void ApplySort (PropertyDescriptor property, ListSortDirection direction);

		int Find (PropertyDescriptor property, object key);

		void RemoveIndex (PropertyDescriptor property);

		void RemoveSort ();
		
		bool AllowEdit {
			get;
		}

		bool AllowNew {
			get;
		}

		bool AllowRemove {
			get;
		}

		bool IsSorted {
			get;
		}

		ListSortDirection SortDirection {
			get;
		}

		PropertyDescriptor SortProperty {
			get;
		}

		bool SupportsChangeNotification {
			get;
		}

		bool SupportsSearching {
			get;
		}

		bool SupportsSorting {
			get;
		}

		event ListChangedEventHandler ListChanged;
	}
}