Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Wisej.Web.BindingCompleteEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Provides data for the BindingComplete event.
Initializes a new instance of the BindingCompleteEventArgs class with the specified binding, error state and text, binding context, exception, and whether the binding should be canceled.
binding
state
context
errorText
The error text or exception message for errors that occurred during the binding.
exception
cancel
true to cancel the binding and keep focus on the current control; false to allow focus to shift to another control.
Initializes a new instance of the BindingCompleteEventArgs class with the specified binding, error state and text, binding context, and exception.
binding
state
context
errorText
The error text or exception message for errors that occurred during the binding.
exception
Initializes a new instance of the BindingCompleteEventArgs class with the specified binding, error state and text, and binding context.
binding
state
context
errorText
The error text or exception message for errors that occurred during the binding.
Initializes a new instance of the BindingCompleteEventArgs class with the specified binding, error state, and binding context.
binding
state
context
Binding: Returns the binding associated with this occurrence of a BindingComplete event.
BindingCompleteContext: Returns the direction of the binding operation.
BindingCompleteState: Returns the completion state of the binding operation.
String: Returns the text description of the error that occurred during the binding operation.
Exception: Returns the exception that occurred during the binding operation.
Wisej.Web.BindingCompleteContext
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Specifies the direction of the binding operation.
ControlUpdate
The control property value is being updated from the data source.
DataSourceUpdate
The data source value is being updated from the control property.
Returns the direction of the binding operation.
The binding associated with this occurrence of a event.
One of the values.
One of the values.
The that occurred during the binding.
The binding associated with this occurrence of a event.
One of the values.
One of the values.
The that occurred during the binding.
The binding associated with this occurrence of a event.
One of the values.
One of the values.
The binding associated with this occurrence of a event.
One of the values.
One of the values.
Represents the delegate that handles the event.
Wisej.Web.BindingCompleteEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Represents the delegate that handles the BindingComplete event.
sender
The source of the event.
e
A that contains the event data.
Fired when the property true and a binding operation is completed.
Fired at the completion of a data-binding operation.
Fired when all the clients have been bound to this .
Wisej.Web.BindingManagerBase
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Manages all Binding objects that are bound to the same data source and data member.
BindingsCollection: Returns the collection of bindings being managed.
Int32: Returns the number of items in the list.
Object: Returns the current item in the list.
Boolean: Returns whether binding is suspended.
Int32: Returns or sets the position of the data binding source within the list.
Adds a new item to the underlying list.
Throws:
NotSupportedException The underlying data source does not implement IBindingList, or the data source has thrown an exception because the user has attempted to add a row to a read-only or fixed-size DataView.
Cancels the current edit operation.
Ends the current edit operation.
Returns the property descriptor collection for the underlying list.
Returns: PropertyDescriptorCollection. A PropertyDescriptorCollection for the list.
Removes the item at the specified index.
index
The index of the item to remove from the list.
Throws:
IndexOutOfRangeException There is no row at the specified index .
Causes a control bound to this data source to re-read the current item and refresh the displayed value.
Causes a control bound to this data source to re-read the item at the specified itemIndex and refresh the displayed value.
itemIndex
The index of the item that has changed.
Resumes data binding.
Suspends data binding to prevents changes from updating the bound data source.
Reads the current values from the data source and sends them to the control.
BindingCompleteEventHandler Fired at the completion of a data-binding operation.
EventHandler Fired when the currently bound item changes.
EventHandler Fired when the state of the currently bound item changes.
BindingManagerDataErrorEventHandler Fired when an Exception is silently handled by the BindingManagerBase.
EventHandler Fired after the value of the Position property has changed.
Keeps data-bound controls synchronized with each other: showing data from the same record.
Wisej.Web.BindingContext
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Manages the collection of BindingManagerBase objects for any object that inherits from the Control class.
Creates a new instance of BindingContext.
Boolean: Returns whether the collection is read-only.
BindingManagerBase: Returns the BindingManagerBase that is associated with the data source.
BindingManagerBase: Returns a BindingManagerBase that is associated with the data source and data member.
Throws:
Exception The specified dataMember does not exist in the specified data source.
Adds the BindingManagerBase associated with a specific data source to the collection.
dataSource
listManager
Throws:
ArgumentNullException dataSource is null, or listManager is null.
Adds the BindingManagerBase associated with a specific data source to the collection.
dataSource
listManager
Throws:
ArgumentNullException dataSource is null, or listManager is null.
Clears the collection of any BindingManagerBase objects.
Clears the collection of any BindingManagerBase objects.
Returns whether the BindingContext contains the BindingManagerBase associated with the data source.
dataSource
Returns: Boolean. true if the BindingContext contains the BindingManagerBase; otherwise, false.
Returns whether the BindingContext contains the BindingManagerBase associated with the data source and data member.
dataSource
dataMember
Returns: Boolean. true if the BindingContext contains the BindingManagerBase; otherwise, false.
Removes the BindingManagerBase associated with the specified dataSource .
dataSource
An object that represents the data source.
Removes the BindingManagerBase associated with the specified dataSource .
dataSource
An object that represents the data source.
Associates a Binding with a new BindingContext.
newBindingContext
binding
CollectionChangeEventHandler Fired when the collection of data sources changes.
Wisej.Web.BindingManagerDataErrorEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Provides data for the DataError event.
Initializes a new instance of the BindingManagerDataErrorEventArgs class.
exception
Exception: Returns the Exception caught in the binding process.
Wisej.Web.BindingMemberInfo
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Contains information that enables a Binding to resolve a data binding to either the property of an object or the property of the current object in a list of objects.
Initializes a new instance of the BindingMemberInfo class.
dataMember
A navigation path that resolves to either the property of an object or the property of the current object in a list of objects.
String: Returns the property name of the data-bound object.
String: Returns the information that is used to specify the property name of the data-bound object.
String: Returns the property name, or the period-delimited hierarchy of property names, that comes before the property name of the data-bound object.
Wisej.Web.BindingManagerDataErrorEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Represents the method that will handle the DataError event.
sender
The source of the event.
e
A that contains the event data.
Fired when an is silently handled by the .
Fired when a currency-related exception is silently handled by the .
Wisej.Web.BindingNavigator
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Represents the navigation and manipulation user interface (UI) for controls that are bound to a data source.
Initializes a new instance of the BindingNavigator class with the specified BindingSource as the data source.
bindingSource
Initializes a new instance of the BindingNavigator class, indicating whether to display the standard navigation user interface (UI).
addStandardItems
true to show the standard navigational UI; otherwise, false.
Button: Returns or sets the "Add New" button.
BindingSource: Returns or sets the BindingSource component that is the source of data. (Default: null
)
Label: Returns or sets the control that displays the total number of items in the associated BindingSource.
String: Gets or sets a string used to format the information displayed in the CountItem control.
Button: Returns or sets the "Delete" button.
Button: Returns or sets the "Move First" button.
Button: Returns or sets the "Move Last" button.
Button: Returns or sets the "Move Next" button.
Button: Returns or sets the "Move Previous" button.
Orientation: Returns or sets a value indicating the horizontal or vertical orientation of the BindingNavigator control.
When the control is docked, this property is managed automatically.
TextBox: Returns or sets the TextBox control that displays the current position within the associated BindingSource.
String: Returns or sets the text to display on the tab. (Default: ""
)
Adds the standard set of navigation items to the BindingNavigator control.
Disables updates to the controls of during the component's initialization.
Clean up any resources being used.
disposing
true if managed resources should be disposed; otherwise, false.
Enables updates to the controls after the component's initialization has completed.
Fires the DockChanged event.
e
Fires the RefreshItems event.
e
Fires the TextChanged event.
e
Causes validation to occur and returns whether validation was successful.
Returns: Boolean. true if validation was successful and focus can shift to the BindingNavigator; otherwise, false.
EventHandler Fired when the state of the navigational user interface (UI) needs to be refreshed to reflect the current state of the underlying data source.
EventHandler Fired when the value of the Text property changes.
Provides access to the UserData
and Tag
properties associated to the component implementing this interface.
Bindable components implement this interface.
Controls that support drag & drop operations implement this interface.
Provides access to common image properties across the controls that implement this interface.
All wisej components implement this interface.
Allows an object to serialize itself.
Wisej.Web.Binding
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Represents the simple binding between the property value of an object and the property value of a .
Initializes a new instance of the class that simple-binds the indicated control property to the specified data member of the data source.
Throws:
propertyName is neither a valid property of a control nor an empty string ("").
The property given by propertyName does not exist on the control.
Initializes a new instance of the class that binds the indicated control property to the specified data member of the data source, and optionally enables formatting to be applied.
Throws:
Throws:
Throws:
Throws:
Throws:
Sets the control property to the value read from the data source.
Reads the current value from the control property and writes it to the data source.
Wisej.Web.Command<T>
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Implements the interface wrapping execute and canExecute actions.
You can use this class to wrap custom commands to bind to controls that implement the interface and need to access the typed data source records. In the snippet below, the CommandDemoViewModel class derives from BindingList<Customer> and allows the commands to directly interact with the typed property.
Wisej.Web.BindingsCollection
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Represents a collection of objects for a control.
: Returns the total number of bindings in the collection.
: Returns the at the specified index.
Throws:
The collection doesn't contain an item at the specified index.
Reads the current values from the data source and sends them to the control.
Takes the current values from the control and writes them to the data source.
Maintains a between an object's property and a data-bound control property.
The object associated with the .
The to add.
The object associated with the .
The to add.
An that represents the data source.
An that represents the data source.
The information needed to resolve to a specific .
The new to associate with the .
The to associate with the new .
The that occurred in the binding process.
Represents the method that will handle the event.
Return the binding information based on the dataMember parameter in the constructor.
Return the binding information based on the dataMember parameter in the constructor.
The used as a data source.
An that contains the event data.
A that contains the event data.
A that contains the event data.
All wisej controls derived from the class must implement this interface.
The property given by propertyName does not exist on the control; or the property given is a read-only property.
Formatting is disabled and propertyName is neither a valid property of a control nor an empty string ("").
Initializes a new instance of the class that binds the specified control property to the specified data member of the specified data source. Optionally enables formatting and propagates values to the data source based on the specified update setting.
The property given by propertyName does not exist on the control; or the data source or data member or control property specified are associated with another binding in the collection.
Initializes a new instance of the class that binds the indicated control property to the specified data member of the specified data source. Optionally enables formatting, propagates values to the data source based on the specified update setting, and sets the property to the specified value when a is returned from the data source.
The property given by propertyName does not exist on the control; or the data source or data member or control property specified are associated with another binding in the collection.
Initializes a new instance of the class that binds the specified control property to the specified data member of the specified data source. Optionally enables formatting with the specified format string; propagates values to the data source based on the specified update setting; and sets the property to the specified value when a is returned from the data source.
The property given by propertyName does not exist on the control; or the data source or data member or control property specified are associated with another binding in the collection.
Initializes a new instance of the class with the specified control property to the specified data member of the specified data source. Optionally enables formatting with the specified format string; propagates values to the data source based on the specified update setting; enables formatting with the specified format string; sets the property to the specified value when a is returned from the data source; and sets the specified format provider.
The property given by propertyName does not exist on the control; or the data source or data member or control property specified are associated with another binding in the collection.
: Returns the this is associated with. (Default: null
)
: Return the binding information based on the dataMember parameter in the constructor.
: Returns the control that the binding belongs to. (Default: null
)
: Returns or sets when changes to the data source are propagated to the bound control property. (Default: OnPropertyChanged
)
: Returns the data source for this binding.
: Returns or sets the value to be stored in the data source if the control value is null or empty.
: Returns or sets a value that indicates when changes to the bound control property are propagated to the data source. (Default: OnValidation
)
: Returns the list of event handlers that are attached to this .
: Returns or sets the that provides custom formatting behavior. (Default: null
)
: Returns or sets the format specifier characters that indicate how a value is to be displayed.
: Returns or sets a value indicating whether type conversion and formatting is applied to the control property data. (Default: False
)
: Returns whether the binding is active.
: Returns or sets the to be set as the control property when the data source contains a value.
: Returns the name of the control's data-bound property. (Default: ""
)
Fires the event.
Fires the event.
Fires the event.
Fired when the property true and a binding operation is completed.
Fired when the property of a control is bound to a data value.
Fired when the value of a data-bound control changes.
Now you can use data binding or a code assignment to connect the view model's Add command to a button's property.
Initializes a new instance of .
Fired when the collection has changed.
Fired when the collection is about to change.
DataError
The binding operation failed with a data error.
Exception
The binding operation failed with an exception.
Success
The binding operation completed successfully.
Returns the completion state of the binding operation.
propertyName
The name of the control property to bind.
dataSource
An Object representing the data source.
dataMember
The property or list to bind to.
formattingEnabled
true to format the displayed data; otherwise, false.
dataSourceUpdateMode
One of the DataSourceUpdateMode values.
propertyName
The name of the control property to bind.
dataSource
An Object representing the data source.
dataMember
The property or list to bind to.
formattingEnabled
true to format the displayed data; otherwise, false.
dataSourceUpdateMode
One of the DataSourceUpdateMode values.
nullValue
propertyName
The name of the control property to bind.
dataSource
An Object representing the data source.
dataMember
The property or list to bind to.
formattingEnabled
true to format the displayed data; otherwise, false.
dataSourceUpdateMode
One of the DataSourceUpdateMode values.
nullValue
formatString
One or more format specifier characters that indicate how a value is to be displayed.
propertyName
The name of the control property to bind.
dataSource
An Object representing the data source.
dataMember
The property or list to bind to.
formattingEnabled
true to format the displayed data; otherwise, false.
dataSourceUpdateMode
One of the DataSourceUpdateMode values.
nullValue
formatString
One or more format specifier characters that indicate how a value is to be displayed.
formatInfo
An implementation of IFormatProvider to override default formatting behavior.
e
A BindingCompleteEventArgs that contains the event data.
e
A ConvertEventArgs that contains the event data.
e
A ConvertEventArgs that contains the event data.
Defines a component's binding instance.
T
The Type of the data passed to the actions.
execute
canExecute
Defines a command that can be used for data binding.
Wisej.Web.Command
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Implements the ICommand interface wrapping execute and canExecute actions.
You can use this class and Command to wrap custom commands to bind to controls that implement the ICommandSource interface. A view model class can expose as many commands as you like. You can bind (or assign) a command to the Command property (see Command for example).
Now you can use data binding or a code assignment to connect the view model's Add command to a button's Command property.
Initializes a new Command wrapping am execute method and an canExecute method.
execute
canExecute
Initializes a new Command wrapping am execute method and an canExecute method.
execute
canExecute
Executes a method that determines whether the command can execute in its current state.
args
Returns: Boolean. true if this command can be executed; otherwise, false.
Executes the command method.
args
Fires the CanExecuteChanged event.
EventHandler Fired when the result of the CanExecute method changes.
Defines a command that can be used for data binding.
propertyName
The name of the control property to bind.
dataSource
An Object that represents the data source.
dataMember
The property or list to bind to.
propertyName
The name of the control property to bind.
dataSource
An Object that represents the data source.
dataMember
The property or list to bind to.
formattingEnabled
true to format the displayed data; otherwise, false.
Wisej.Web.BindingSource
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Encapsulates the data source for a data-bound component.
Initializes a new instance of the BindingSource class to the default property values.
Initializes a new instance of the BindingSource class and adds the BindingSource to the specified container.
container
Initializes a new instance of the BindingSource class with the specified data source and data member.
dataSource
dataMember
The specific column or list name within the data source to bind to.
Initializes a new instance of the BindingSource class with the specified data source.
dataSource
Boolean: Returns whether items in the underlying list can be edited.
Boolean: Returns or sets whether the AddNew method can be used to add items to the list.
Throws:
InvalidOperationException This property is set to true when the underlying list represented by the List property has a fixed size or is read-only.
MissingMethodException The property is set to true and the AddingNew event is not handled when the underlying list type does not have a default constructor.
Boolean: Returns whether the items can be removed from the underlying list.
Int32: Returns the total number of items in the underlying list, filtered using the current Filter value.
CurrencyManager: Returns the currency manager associated with this BindingSource.
Object: Returns the current item in the list.
Use the Current property to access the current item, but use the List property to get the entire list. To determine the type of the current object, use the GetType, or ToString methods. To change the current item, set the Position property to a new integral value, or use one of the navigation methods such as MoveNext.
String: Returns or sets the list in the data source to which the connector currently binds to. (Default: ""
)
If the DataSource contains multiple lists (or tables) of data, you should set the DataMember property to the name of one of the sources. Setting this property raises the DataMemberChanged event
Object: Returns or sets the data source that the connector binds to. (Default: null
)
The DataSource property can be set to a number of data sources, including types, objects, and lists of types. The resulting data source will be exposed as a list. The following table shows some of the common data sources and the resulting list evaluation.
null
An empty
null with
Not supported, raises
Non-list type or object of type "T"
Empty
An
List instance containing type "T"
In addition, DataSource can be set to other list types such as IListSource and ITypedList and the BindingSource will handle them appropriately. In this case, the type contained in the list should have a parameterless constructor. When setting a data source, if the supplied reference contains more than one list or table, you must set the DataMember property to a string that specifies the list to bind to. Setting this property raises the DataSourceChanged event.
String: Returns or sets the expression used to filter the items in the underlying List. (Default: null
)
Typically used in complex data-binding scenarios, the Filter property allows you to view a subset of the DataSource. Only underlying lists that implement the IBindingListView interface support filtering. When Filter is not null, the BindingSource passes this property to the underlying list. If you set this property during object initialization, the call will be deferred until after initialization is complete. To form a filter value, specify the name of a column followed by an operator and a value to filter on. The accepted filter syntax depends on the underlying data source. If the underlying data source is a DataSet, DataTable, or DataView, you can specify Boolean expressions using the syntax documented for the DataColumn.Expression property. The value of the Filter property affects the value of the Count property. Additionally, the Filter value will persist when the data source changes. To stop filtering the DataSource, call the RemoveFilter method.
Boolean: Returns whether data binding is suspended.
Boolean: Returns whether the underlying List has a fixed size.
Boolean: Return whether the underlying List is read-only.
Boolean: Returns whether the items in the underlying List are sorted.
Boolean: Returns whether access to the collection is synchronized (thread safe).
Object: Returns or sets the list element at the specified index in the underlying List.
Throws:
ArgumentOutOfRangeException index is less than zero or is equal to or greater than Count.
IList: Returns the underlying data list.
The BindingSource class uniformly handles different data sources. Ideally the List property should be set to a general IList. However, sometimes it may be necessary to cast this property to a more specific type. The following table shows the underlying list type, which depends on the type or value of the data source.
An empty
None; an attempt to get the List will throw an
An
An
An
The return value from a call to the GetList() method of this
An
An
An
An
A non-
A
An
An
An
An
The
A
A Type that represents an
An instance created by a call to the CreateInstance(Type) method of the
The
A
The
None; an attempt to get the
If the type retrieved is the IList interface, the underlying collection may be more complex, such as an ArrayList or DataView class.
Int32: Returns or sets the index of the current item in the underlying List. (Default: -1
)
When setting the Position property, out-of-range values are treated in the following manner:
Negative values are treated as 0.
Values greater than or equal to Count are treated as Count minus 1.
Changing the Position property will adjust the Current property.
Boolean: Returns or sets a value indicating whether ListChanged events should be raised. (Default: True
)
When the RaiseListChangedEvents property is false, it suspends the raising of the ListChanged events. This event indicates that the bound list has been modified in some way, including adding, deleting, inserting, or modifying items.
Boolean: Enables the automatic refresh of the source property after a data-bound value has been updated in the data source. (Default: False
)
This option fixes a long standing "feature" of the default BindingSource where the property that is the source of a value change is not refreshed automatically after it updates the bound data source. In a scenario where the data source "transforms" the value received from a data-bound control, the source property is not updated while all other bound properties are.
String: Returns or sets the column names used for sorting, and the sort order for viewing the rows in the data source. (Default: null
)
The Sort property is a case-sensitive string that specifies the column names used to sort the rows, along with the SortDirection. Columns are sorted ascending by default. Multiple columns can be separated by commas, such as "State, ZipCode DESC". To support sorting, the underlying List must implement the IBindingList or IBindingListView interfaces. This capability can be queried through the SupportsSorting property. Multicolumn sorting is available when the SupportsAdvancedSorting property is true. Setting the Sort property will change the internal list depending on its type:
If the list is of type IBindingList, the SortProperty and SortDirection properties are set in the internal list.
If the list is of type IBindingListView, the SortDescriptions property is set.
The internal list's sort properties are only changed when the sort string is not null. The get accessor for this property will not retrieve the sort value of the internal list; instead, it will return the set accessor value. The value of the Sort property will persist when the data source changes.
ListSortDescriptionCollection: Returns the collection of sort descriptions applied to the data source.
If the data source is not an IBindingListView, the SortDescriptions property always returns null.
ListSortDirection: Returns the direction the items in the underlying List are sorted.
If the data source is not an IBindingList, the SortDirection property always returns Ascending.
PropertyDescriptor: Returns the PropertyDescriptor that is being used for sorting the underlying List.
If the data source is not an IBindingList, the SortProperty property always returns null.
Boolean: Returns whether the data source supports multi-column sorting.
If the data source is not an IBindingListView, the SupportsAdvancedSorting property always returns false.
Boolean: Return whether the data source supports change notification.
Boolean: Returns whether the data source supports filtering.
If the data source is not an IBindingList, the SupportsFiltering property always returns false.
Boolean: Returns whether the data source supports searching with the Find method.
If the data source is not an IBindingList, the SupportsSearching property always returns false.
Boolean: Returns whether the data source supports sorting.
If the data source is not an IBindingList, the SupportsSorting property always returns false.
Object: Returns an object used to synchronize access to the underlying List.
Adds an existing item to the underlying List.
item
Returns: Int32. The index at which the item was added to the underlying List.
Adds a new item to the underlying List.
Returns: Object. The object that was created and added to the underlying List.
Sorts the data source using the specified property descriptor and sort direction.
property
sort
The IBindingList implements single column sorting using a PropertyDescriptor to indicate a property to sort by and a ListSortDirection indicating whether the property contents should be sorted in ascending or descending order. Throws:
NotSupportedException The data source is not an IBindingList.
Sorts the data source with the specified sort descriptions.
sorts
IBindingListView implements multi-column sorting as a set of property descriptor-direction pairs. Throws:
NotSupportedException The data source is not an IBindingListView.
Cancels the current edit operation.
Removes all elements from the list.
Determines whether the item is present in he underlying List.
item
Returns: Boolean. true if the item is found in the List.
Copies the contents of the List to the specified array , starting at the specified index value.
array
The destination array.
index
The index in the destination array at which to start the copy.
Applies pending changes to the underlying data source.
When the EndEdit method is called, all pending changes are applied to the underlying data source. This method has no effect unless the objects contained by the data source implement the IEditableObject interface. If the objects do not implement the IEditableObject interface, changes to the data are copied to the underlying data source immediately after each change. This method raises the ListChanged event.
Returns the index of the item in the list with the specified propertyName and value .
propertyName
The name of the property to search.
value
The value of the item with the specified propertyName to find.
Returns: Int32. The zero-based index of the item with the specified propertyName and value .
Throws:
InvalidOperationException The underlying list is not a IBindingList with searching functionality implemented.
ArgumentException propertyName does not match a property in the list.
Searches for the index of the that has the given value in the specified property .
property
value
The value of the property to match.
Returns: Int32. The index of the item that has the given value .
Throws:
ArgumentException property does not match a property in the list.
Retrieves the collection of PropertyDescriptor objects representing the bindable ICommand properties defined on the DataSource object.
Returns: PropertyDescriptorCollection. An collection of PropertyDescriptor objects that represents the commands on the data source.
Retrieves an enumerator for the underlying List.
Returns: IEnumerator. An IEnumerator for the List.
Retrieves an collection of PropertyDescriptor objects representing the bindable properties of the data source list type.
listAccessors
Returns: PropertyDescriptorCollection. An collection of PropertyDescriptor objects that represents the properties on this list type used to bind data.
Returns the name of the list supplying data for the binding operations.
listAccessors
Returns: String. The name of the list supplying the data for binding operations.
Returns the related CurrencyManager for the specified data member.
dataMember
The name of column or list, within the data source to retrieve the currency manager for.
Returns: CurrencyManager. The related CurrencyManager for the specified data member.
Returns the index of the specified item in the underlying List.
item
item to locate.
Returns: Int32. The index of the first occurrence of item in the List.
Inserts an item into the List at the specified index .
index
Index at which to insert the item.
item
Item to insert, it can be null.
Throws:
ArgumentOutOfRangeException index is less than zero or greater than Count.
NotSupportedException The list is read-only or has a fixed size.
Moves the current position to the first item in the List.
Moves the current position to the last item in the List.
Moves the current position to the next item in the List.
Moves the current position to the previous item in the List.
Fires the AddingNew event.
e
Fires the BindingComplete event.
e
Fires the CurrentChanged event.
e
Fires the CurrentItemChanged event.
e
Fires the DataError event.
e
Fires the DataMemberChanged event.
e
Fires the DataSourceChanged event.
e
Fires the ListChanged event.
e
Fires the PositionChanged event.
e
Removes the specified item from the List.
item
Item to remove.
Removes the item at the specified index from the List.
index
Index of the item to remove.
Removes the current item from the List.
Removes the filter associated with this BindingSource
Removes the sort information associated with this BindingSource.
Throws:
NotSupportedException The underlying data source does not support sorting.
Causes a control bound to this BindingSource to re-read all the items and refresh their displayed value.
Causes a control bound to this BindingSource to re-read all the items and refresh their displayed value.
metadataChanged
true if the schema has changed; false if only the data has changed.
Causes a control bound to this BindingSource to re-read the current item and refresh the displayed value.
Causes a control bound to this BindingSource to read the item at the specified itemIndex and refresh the displayed value.
itemIndex
The index of the item that has changed.
Resumes data binding.
Suspends data binding to prevent changes from updating the data-bound data source.
AddingNewEventHandler Fired before an item is added to the underlying List.
BindingCompleteEventHandler Fired when all the clients have been bound to this BindingSource.
EventHandler Occurs when the currently bound item changes.
EventHandler Occurs when a property value of the Current property has changed.
BindingManagerDataErrorEventHandler Fired when a currency-related exception is silently handled by the BindingSource.
EventHandler Fired when the DataMember property value has changed.
EventHandler Fired when the DataSource property value has changed.
ListChangedEventHandler Fired when the underlying List changes or an item in the list changes.
EventHandler Fired after the value of the Position property has changed.
Provides custom binding management for components.
Wisej.Web.CommandArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Represents data passed to ICommand.
Initializes a new instance of CommandArgs.
dataItem
Current data item in the data source, or null.
commandSource
bindingContext
currencyManager
All arguments are optional.
BindingContext: Returns or sets the current BindingContext.
ICommandSource: Returns or sets the ICommandSource that invoked the command.
CurrencyManager: Returns or sets the current CurrencyManager.
Object: Returns or sets the current data item.
Wisej.Web.CommandArgs<T>
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Represents typed data passed to ICommand.
T
Initializes a new CommandArgs.
Initializes a new CommandArgs.
args
T: Returns or sets the current data item.
Wisej.Web.ControlUpdateMode
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Determines when changes to a data source value are updated in the data-bound control.
Never
The bound control is never updated. Binding is "write-only" with respect to the data source. To force the control property to be updated, use the method.
OnPropertyChanged
The bound control is updated whenever the data changes, or the data source position changes. This is the default update mode.
Returns or sets when changes to the data source are propagated to the bound control property.
Returns or sets when changes to the data source are propagated to the bound control property.
Wisej.Web.ControlBindingsCollection
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Represents the collection of data bindings for a IBindableComponent.
Initializes a new instance of the ControlBindingsCollection class with the specified bindable control.
component
IBindableComponent: Returns the IBindableComponent associated the binding collection.
Control: Returns the Control that the collection belongs to.
DataSourceUpdateMode: Returns or sets the default DataSourceUpdateMode for a Binding in the collection.
Binding: Returns the Binding specified by the control's property name.
Binding: Returns the Binding at the specified index.
Throws:
IndexOutOfRangeException The collection doesn't contain an item at the specified index.
Adds the specified Binding to the collection.
binding
Throws:
ArgumentNullException The binding is null.
ArgumentException The control property is already data-bound.
ArgumentException The Binding does not specify a valid column.
Creates a Binding using the specified control property name, data source, and data member, and adds it to the collection.
propertyName
The name of the control property to bind.
dataSource
dataMember
The property or list to bind to.
Returns: Binding. The newly created Binding.
Throws:
Exception The propertyName is already data-bound.
Exception The dataMember doesn't specify a valid member of the dataSource .
Creates a binding with the specified control property name, data source, data member, and information about whether formatting is enabled, and adds the binding to the collection.
propertyName
The name of the control property to bind.
dataSource
dataMember
The property or list to bind to.
formattingEnabled
true to format the displayed data; otherwise, false
Returns: Binding. The newly created Binding.
Throws:
ArgumentException The property given by propertyName does not exist on the control.-or-The property given is a read-only property.
Exception If formatting is disabled and the propertyName is neither a valid property of a control nor an empty string ("").
Creates a binding with the specified control property name, data source, data member, and information about whether formatting is enabled, and adds the binding to the collection.
propertyName
The name of the control property to bind.
dataSource
dataMember
The property or list to bind to.
formattingEnabled
true to format the displayed data; otherwise, false
formatString
One or more format specifier characters that indicate how a value is to be displayed.
Returns: Binding. The newly created Binding.
Throws:
ArgumentException The property given by propertyName does not exist on the control.-or-The property given is a read-only property.
Exception If formatting is disabled and the propertyName is neither a valid property of a control nor an empty string ("").
Creates a binding with the specified control property name, data source, data member, and information about whether formatting is enabled, and adds the binding to the collection.
propertyName
The name of the control property to bind.
dataSource
dataMember
The property or list to bind to.
formattingEnabled
true to format the displayed data; otherwise, false
nullValue
formatString
One or more format specifier characters that indicate how a value is to be displayed.
Returns: Binding. The newly created Binding.
Throws:
ArgumentException The property given by propertyName does not exist on the control.-or-The property given is a read-only property.
Exception If formatting is disabled and the propertyName is neither a valid property of a control nor an empty string ("").
Creates a binding that binds the specified control property to the specified data member of the specified data source, optionally enabling formatting, propagating values to the data source based on the specified update setting, and adding the binding to the collection.
propertyName
The name of the control property to bind.
dataSource
dataMember
The property or list to bind to.
formattingEnabled
true to format the displayed data; otherwise, false.
updateMode
Returns: Binding. The newly created Binding.
Throws:
ArgumentException The property given by propertyName does not exist on the control or is read-only.-or-The specified data member does not exist on the data source.-or-The data source, data member, or control property specified are associated with another binding in the collection.
Creates a binding that binds the specified control property to the specified data member of the specified data source, optionally enabling formatting, propagating values to the data source based on the specified update setting, setting the property to the specified value when DBNull is returned from the data source, and adding the binding to the collection.
propertyName
The name of the control property to bind.
dataSource
dataMember
The property or list to bind to.
formattingEnabled
true to format the displayed data; otherwise, false.
updateMode
nullValue
Returns: Binding. The newly created Binding
Throws:
ArgumentException The property given by propertyName does not exist on the control or is read-only.-or-The specified data member does not exist on the data source.-or-The data source, data member, or control property specified are associated with another binding in the collection.
Creates a binding that binds the specified control property to the specified data member of the specified data source, optionally enabling formatting with the specified format string, propagating values to the data source based on the specified update setting, setting the property to the specified value when DBNull is returned from the data source, and adding the binding to the collection.
propertyName
The name of the control property to bind.
dataSource
dataMember
The property or list to bind to.
formattingEnabled
true to format the displayed data; otherwise, false.
updateMode
nullValue
formatString
One or more format specifier characters that indicate how a value is to be displayed.
Returns: Binding. The newly created Binding
Throws:
ArgumentException The property given by propertyName does not exist on the control or is read-only.-or-The specified data member does not exist on the data source.-or-The data source, data member, or control property specified are associated with another binding in the collection.
Creates a binding that binds the specified control property to the specified data member of the specified data source, optionally enabling formatting with the specified format string, propagating values to the data source based on the specified update setting, setting the property to the specified value when DBNull is returned from the data source, setting the specified format provider, and adding the binding to the collection.
propertyName
The name of the control property to bind.
dataSource
dataMember
The property or list to bind to.
formattingEnabled
true to format the displayed data; otherwise, false.
updateMode
nullValue
formatString
One or more format specifier characters that indicate how a value is to be displayed
formatInfo
Returns: Binding. The newly created Binding.
Throws:
ArgumentException The property given by propertyName does not exist on the control or is read-only.-or-The specified data member does not exist on the data source.-or-The data source, data member, or control property specified are associated with another binding in the collection.
Adds a Binding to the collection.
binding
Throws:
ArgumentNullException The binding argument was null.
Removes all bindings in the collection.
Fires the CollectionChanged event.
e
Fires the CollectionChanging event.
e
Removes the specified Binding from the collection.
binding
Throws:
NullReferenceException The binding is null.
Removes the Binding at the specified index.
index
The zero-based index of the item to remove.
Throws:
ArgumentOutOfRangeException The index value is less than 0, or it is greater than the number of bindings in the collection.
CollectionChangeEventHandler Fired when the collection has changed.
CollectionChangeEventHandler Fired when the collection is about to change.
Wisej.Web.ConvertEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Base for the specialized convert event handlers.
Initializes a new instance of the ConvertEventArgs class.
value
desiredType
Type: Returns the data type of the desired value.
Object: Returns or sets the value of the ConvertEventArgs.
Wisej.Web.IBinding
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Defines a component's binding instance.
IBindableComponent: Returns the IBindableComponent.
BindingMemberInfo: Return the binding information based on the dataMember parameter in the #ctor constructor.
ControlUpdateMode: Returns or sets when changes to the data source are propagated to the bound control property.
Object: Returns the data source for this binding.
Object: Returns or sets the value to be stored in the data source if the control value is null or empty.
DataSourceUpdateMode: Returns or sets a value that indicates when changes to the bound control property are propagated to the data source.
IFormatProvider: Returns or sets the IFormatProvider that provides custom formatting behavior.
String: Returns or sets the format specifier characters that indicate how a value is to be displayed.
Boolean: Returns or sets a value indicating whether type conversion and formatting is applied to the control property data.
Object: Returns or sets the Object to be set as the control property when the data source contains a DBNull value.
String: Returns the name of the control's data-bound property.
Sets the target property to the value read from the data source.
Reads the current value from the target property and writes it to the data source.
Wisej.Web.DataSourceUpdateMode
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Specifies when a data source is updated when the bound control properties are changed.
Never
The data source is never updated and values entered into the control are not parsed, or re-formatted.
OnPropertyChanged
The data source is updated whenever the value of the control property changes.
OnValidation
The data source is updated when the control property is validated.
Returns or sets a value that indicates when changes to the bound control property are propagated to the data source.
Returns or sets a value that indicates when changes to the bound control property are propagated to the data source.
Returns or sets the default for a in the collection.
Creates a binding that binds the specified control property to the specified data member of the specified data source, optionally enabling formatting, propagating values to the data source based on the specified update setting, and adding the binding to the collection.
Wisej.Web.CurrencyManager
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Keeps data-bound controls synchronized with each other: showing data from the same record.
Int32: Returns the number of items in the list.
Object: Returns the current item in the list.
IList: Returns the list for this CurrencyManager.
Int32: Returns or sets the current position within the list.
Boolean: Returns true when the bound data source can accept changes. Calling SuspendBinding sets this flag to false and ResumeBinding sets it to true (default).
Adds a new item to the underlying list.
Throws:
NotSupportedException The underlying data source does not implement IBindingList, or the collection element doesn't implement a public parameterless constructor, or the data source has thrown an exception because the user has attempted to add a row to a read-only or fixed-size DataView.
Forces a refresh of the data-bound list.
Causes a control bound to this data source to re-read the current item and refresh the displayed value.
Causes a control bound to this data source to re-read the item at the specified itemIndex and refresh the displayed value.
itemIndex
The index of the item that has changed.
Resumes data binding.
Suspends data binding to prevents changes from updating the bound data source.
ItemChangedEventHandler Fired when the current item has been altered.
ListChangedEventHandler Fired when the list changes or an item in the list changes.
EventHandler Fired when the metadata of the List has changed.
Wisej.Web.ConvertEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Represents the method that handles the Parse and Format events of a Binding.
sender
The source of the event.
e
A that contains the event data.
Fired when the control parses the text into the typed .
Fired when the value control formats the typed to display it to the user.
Fired when the property of a control is bound to a data value.
Fired when the value of a data-bound control changes.
Wisej.Web.IBindableComponent
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Bindable components implement this interface.
: Returns or sets the collection of currency managers for the .
: Returns the collection of data-binding objects for this .
: Returns whether the has its own .
: Returns or sets the owner of this component.
Wisej.Web.ICurrencyManagerProvider
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Provides custom binding management for components.
: Returns the associated with this .
Return the for this and the specified data member.
Returns: . The related obtained from this and the specified data member.
Wisej.Web.PropertyManager
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Maintains a between an object's property and a data-bound control property.
Initializes a new instance of .
: Returns the object owning the data-bound property belongs.
Cancels the current edit.
Ends the current edit operation.
Causes a control bound to this data source to re-read the current item and refresh the displayed value.
Resumes data binding.
Suspends the data binding between a data source and a data-bound property.
Wisej.Web.CommandManager
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Supports the implementations.
Executes the method on the commandSource .
Returns: .
Executes the method on the commandSource .
Returns: .
Wisej.Web.ListBindingHelper
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Provides functionality to discover a bindable list and the properties of the items contained in the list when they differ from the public properties of the object to which they bind.
Returns a list associated with the specified data source.
Returns: . An representing the underlying list if it exists; otherwise, the original data source specified by list .
Returns an object, typically a list, from the evaluation of a specified data source and optional data member.
Returns: . An representing the underlying list if it was found; otherwise, dataSource .
Throws:
The specified data member name did not match any of the properties found for the data source.
Throws:
Returns the data type of the items in the specified list.
Returns the data type of the items in the specified data source.
Invoked by the to perform a command.
Invoked by the to determine whether it can execute the execute function.
Invoked by the to perform a command.
Invoked by the to determine whether it can execute the execute function.
A that contains data that can be used by the command.
A that contains data that can be used by the command.
Implements the interface wrapping execute and canExecute actions.
The to add the current to.
The data source for the .
The data source for the .
Item to add the underlying .
A that describes the property by which to sort the data source.
A indicating how the list should be sorted.
A containing the sort descriptions to apply to the data source.
Item to locate in the underlying .
The to search.
An array of objects to find in the type.
An array of objects to find in the list as bindable.
A that contains the event data.
A that contains the event data.
An that contains the event data.
An that contains the event data.
A that contains the event data.
An that contains the event data.
An that contains the event data.
A that contains the event data.
An that contains the event data.
The that invoked the command.
Current or null.
The for the current data source, or null.
Represents typed data passed to .
Type of the property.
Original data used to initialize the typed object.
The the binding collection belongs to.
The to add.
An that represents the data source.
An representing the data source.
An representing the data source.
An representing the data source.
The to be applied to the bound control property if the data source value is .
An representing the data source.
One of the values.
An representing the data source.
One of the values.
The to be applied to the bound control property if the data source value is .
An representing the data source.
One of the values.
The to be applied to the bound control property if the data source value is .
An representing the data source.
One of the values.
The to be applied to the bound control property if the data source value is .
An implementation of to override default formatting behavior.
The to add to the collection.
A that contains the event data.
A that contains event data.
The to remove.
An that contains the value of the current property.
The of the value.
Represents the method that handles the and events of a .
Represents the simple binding between the property value of an object and the property value of a .
Causes all the components to refresh their commands by invoking the method.
Fired when a invokes its command's method.
Fired when a invokes its command's method.
Returns the that describes the properties of an item type contained in a specified data source, or properties of the specified data source.
Returns: . The containing the properties of the items contained in list , or properties of list..
Returns the that describes the properties of an item type contained in a collection property of a data source. Uses the specified array to indicate which properties to examine.
Returns: . The describing the properties of the item type contained in a collection property of the data source.
Returns the that describes the properties of an item type contained in the specified data member of a data source. Uses the specified array to indicate which properties to examine.
Returns: . The describing the properties of an item type contained in a collection property of the specified data source.
The specified data member could not be found in the specified data source.
Returns: . The of the items contained in the list.
Returns: . For complex data binding, the of the items represented by the dataMember in the data source; otherwise, the of the item in the list itself.
Returns the name of an underlying list, given a data source and optional array.
Returns: . The name of the list in the data source, as described by listAccessors , or the name of the data source type.
Represents a panel that dynamically lays out its contents in a grid composed of rows and columns.
UI implementation for the FileDialog class.
UI implementation for the FolderDialog class.
Represents the navigation and manipulation user interface (UI) for controls that are bound to a data source.
Represents a button control.
Implements the basic functionality common to button controls.
Represents a check box control.
Displays a ListBox in which a check box is displayed to the left of each item.
Represents a combo box control.
Extends Component and enables the component to participated if data binding operations and have their own DataBindings.
Provides focus-management functionality for controls that can function as a container for other controls.
Base class for all Wisej controls.
Represents a control that allows the user to select or type a date and a time.
Represents a spinner control that displays string values.
Represents a panel that dynamically arranges its controls horizontally or vertically in automatic rows or columns.
Represents a window or dialog box that makes up an application's user interface.
Represents a Wisej control that displays a frame around a group of controls with an optional caption.
Represents a label control.
Represents an hyper-link control.
Represents a control to display a list of items.
Uses a mask to distinguish between proper and improper user input.
Represents the container for multiple-document interface (MDI) child forms.
Represents a control that enables the user to select a date using a visual monthly calendar display.
Represents a spinner control that displays numeric values.
Represents a web page that fills the browser and acts as the main container for the application. An application can have only one active main page at any given time.
Represents a collapsible panel with an optional header that contains a group of controls.
Represents an image control.
Represents a progress control that displays a value visually as a filled bar.
Enables the user to select a single option from a group of choices when paired with other RadioButton controls.
Defines a base class for controls that support auto-scrolling behavior.
Represents an horizontal scroll bar.
Represents a vertical scroll bar.
Implements the basic functionality of a scroll bar control.
Represents a control consisting of a movable bar that divides a container's display area into two resizable panels.
Creates a panel that is associated with a SplitContainer.
Manages a related set of TabPage pages.
Represents a single tab page in a TabControl.
Represents a text box control that allows the user to enter any value.
Implements the basic functionality required by text controls.
Enables the user to choose between a range of values by sliding a small bar along another bar.
Implements the basic functionality required by a spin box (also known as an up-down control).
Provides an empty control that can be used to create other controls.
Represents a web browser control that enables the user to navigate web pages inside a form or a page.
Represents a ComboBox control that can be hosted in a DataGridViewComboBoxCell.
Represents a DateTimePicker control that can be hosted in a DataGridViewDateTimePickerCell.
Represents a MaskedTextBox control that can be hosted in a DataGridViewMaskedTextBoxCell cell.
Represents a NumericUpDown control that can be hosted in a DataGridViewNumericUpDownCell.
Represents a TextBox control that can be hosted in a DataGridViewTextBoxCell cell when the cell's WrapMode is set to False.
Represents a data grid control.
Displays data in a customizable list format.
Used by the DataRepeater control to display data at run time.
Represents a desktop container that can host floating windows.
Displays collapsible set of AccordionPanel panels for presenting information in a limited amount of space.
Represents a panel in a Accordion control.
Represents a control that can host ASP.NET or MVC pages within a Wisej application.
Represents the HTML5 canvas element.
Represents a FlashPlayer control that can display flash applications.
Represents a panel that dynamically arranges its child controls.
Represents a control that displays any HTML file and a corresponding CSS style sheet as embedded HTML.
Represents a control that displays any HTML file in an IFrame element.
Represents a line control.
The TreeViewComboBox control represents a UserComboBox control with a ListView as the drop down panel.
Base implementation for media controls.
Represents a Video control that displays a video file.
Represents a Audio control that plays an audio file.
Represents a PdfViewer control that can display a pdf document in the browser either using the native pdf viewer, the pdf.js viewer, Google docs, or a custom viewer.
Represents a shape control. Displays an element a border in any of the four sides.
Displays child controls vertically or horizontally in a scrollable container.
Represents a spacer control. It can be used to add a space between controls in a layout panel. It is not rendered on the client.
Represents a split button control.
Represents a data field that displays a list of selectable and removable tags. The control recognizes tags as the user types and adds in front of the editable field.
Represents a spinner control that displays TimeSpan values.
The TreeViewComboBox control represents a UserComboBox control with a TreeView as the drop down panel.
Represents a text box control that allows the user to enter a typed value.
Represent an upload widget. Allows users to selected one or more files and upload them to the server.
The UserComboBox control represents a ComboBox control with a custom panel that drops down when the user clicks the down arrow.
Provides an popup container that can be attached to other controls.
Provides a generic widget that can use most third party javascript widgets.
Represents a list view control, which displays a collection of items that can be displayed using one of four different views.
Represents an individual menu item that is displayed within a MainMenu or ContextMenu and always shows a checkbox next to the label.
Represents a context menu associated to a Control.
Represents an individual menu item that is displayed within a MainMenu or ContextMenu rendered using the <a> link element to let the browser process the specified HRef URL.
Represents the main menu in a Form.
Represents the base functionality for all menus.
Represents a menu bar component.
Represents an individual item that is displayed within a MainMenu or ContextMenu.
Provides a user interface for browsing the properties of an object.
Displays information to the user in a about the object being viewed, the object's components, or the object's operation.
Represents a panel in a StatusBar control.
Represents a toolbar component.
Represents an item in the ToolBar.
Displays a hierarchical collection of labeled items, each represented by a TreeNode.
Encapsulates the data source for a data-bound component.
source
source
list
The data source to examine for property information.
list
The data source to be examined for property information.
listAccessors
The PropertyDescriptor array describing which properties of the data source to examine. This can be null.
dataSource
The data source to be examined for property information.
dataMember
The optional data member to be examined for property information. This can be null.
listAccessors
The PropertyDescriptor array describing which properties of the data member to examine. This can be null.
list
The list to be examined for type information.
dataSource
The data source to examine for items.
dataMember
The optional name of the property on the data source that is to be used as the data member. This can be null.
list
The data source to examine for the list name.
listAccessors
An array of PropertyDescriptor objects to find in the data source. This can be null.
sender
The source of the event.
e
An ItemChangedEventArgs that contains the event data.
Fired when the current item has been altered.
dataMember
The name of the column or list, within the data source, to obtain the CurrencyManager for.
commandSource
commandSource
sender
Represents the method that will handle the ItemChanged event of the CurrencyManager class.
list
The data source to examine for its underlying list.
dataSource
The data source from which to find the list.
dataMember
The name of the data source property that contains the list. This can be null.