GridViewElement
Namespace: TagBites.WinSchedulers
Assembly: TagBites.WinSchedulers.dll
Provides the base class from which the classes that represent TagBites.WinSchedulers.GridViewControl component are derived.
public class GridViewElement
Constructors
GridViewElement()
public void GridViewElement()
Result Type: void
Properties
GridView
Gets or sets grid view control, which contains this object.
public GridViewControl GridView { get; set; }
Result Type: GridViewControl
Methods
OnGridViewChanged(GridViewControl, GridViewControl)
Called when the TagBites.WinSchedulers.GridViewElement.GridView property is modified.
protected void OnGridViewChanged(GridViewControl oldControl, GridViewControl newControl)
Result Type: void
Parameters
Type | Name | |
---|---|---|
GridViewControl | oldControl | The previous value of the property. |
GridViewControl | newControl | The current value of the property. |
RefreshView()
Refresh the TagBites.WinSchedulers.GridViewControl.
protected void RefreshView()
Result Type: void
RegisterEvent(RoutedEvent, Delegate)
Registers a method handler for a particular routed event.
protected void RegisterEvent(RoutedEvent routedEvent, Delegate handler)
Result Type: void
Parameters
Type | Name | |
---|---|---|
RoutedEvent | routedEvent | The routed event identifier of the event to handle. |
Delegate | handler | A reference to the method handler implementation. |
RegisterMouseDownEvent(MouseButtonEventHandler)
Registers a method handler for the System.Windows.UIElement.MouseDownEvent routed event.
protected void RegisterMouseDownEvent(MouseButtonEventHandler handler)
Result Type: void
Parameters
Type | Name | |
---|---|---|
MouseButtonEventHandler | handler | A reference to the method handler implementation. |
RegisterMouseMoveEvent(MouseEventHandler)
Registers a method handler for the System.Windows.UIElement.MouseMoveEvent routed event.
protected void RegisterMouseMoveEvent(MouseEventHandler handler)
Result Type: void
Parameters
Type | Name | |
---|---|---|
MouseEventHandler | handler | A reference to the method handler implementation. |
RegisterMouseUpEvent(MouseButtonEventHandler)
Registers a method handler for the System.Windows.UIElement.MouseUpEvent routed event.
protected void RegisterMouseUpEvent(MouseButtonEventHandler handler)
Result Type: void
Parameters
Type | Name | |
---|---|---|
MouseButtonEventHandler | handler | A reference to the method handler implementation. |