Class WindowCollection

WindowCollection class

Window collection.

public class WindowCollection : Collection<Window>

Properties

NameDescription
Capacity { get; set; }
ClientHeight { get; set; }Optional int.
ClientWidth { get; set; }Optional int.
Count { get; }
Item { get; set; }

Methods

NameDescription
Add(Window)Add the window in the collection.
BinarySearch(Window)
BinarySearch(Window, IComparer<Window>)
BinarySearch(int, int, Window, IComparer<Window>)
Clear()
Contains(Window)
CopyTo(Window[])
CopyTo(Window[], int)
CopyTo(int, Window[], int, int)
Exists(Predicate<Window>)
Find(Predicate<Window>)
FindAll(Predicate<Window>)
FindIndex(Predicate<Window>)
FindIndex(int, Predicate<Window>)
FindIndex(int, int, Predicate<Window>)
FindLast(Predicate<Window>)
FindLastIndex(Predicate<Window>)
FindLastIndex(int, Predicate<Window>)
FindLastIndex(int, int, Predicate<Window>)
GetEnumerator()
IndexOf(Window)
IndexOf(Window, int)
IndexOf(Window, int, int)
LastIndexOf(Window)
LastIndexOf(Window, int)
LastIndexOf(Window, int, int)
Remove(Window)Remove the window from the collection.
RemoveAt(int)

See Also