GridViewElement
Namespace: TagBites.WinSchedulers
Assembly: TagBites.WinSchedulers.dll
Product: TagBites.WinSchedulers v. 1.3.8
Provides the base class from which the classes that represent GridViewControl component are derived.
public class GridViewElementInheritance: object → GridViewElement
Derived:
Constructors
Section titled “Constructors”GridViewElement()
Section titled “GridViewElement()”public GridViewElement()Properties
Section titled “Properties”GridView
Section titled “GridView”Gets or sets grid view control, which contains this object.
public GridViewControl GridView { get; set; }Property Value
Section titled “Property Value”Grid view control, which contains this object.
Methods
Section titled “Methods”OnGridViewChanged(GridViewControl, GridViewControl)
Section titled “OnGridViewChanged(GridViewControl, GridViewControl)”Called when the GridView property is modified.
protected virtual void OnGridViewChanged(GridViewControl oldControl, GridViewControl newControl)Parameters
Section titled “Parameters”oldControlGridViewControl
The previous value of the GridView property.newControlGridViewControl
The current value of the GridView property.
RefreshView()
Section titled “RefreshView()”Refresh the GridViewControl.
protected void RefreshView()RegisterEvent(RoutedEvent, Delegate)
Section titled “RegisterEvent(RoutedEvent, Delegate)”Registers a method handler for a particular routed event.
protected void RegisterEvent(RoutedEvent routedEvent, Delegate handler)Parameters
Section titled “Parameters”routedEventRoutedEvent
The routed event identifier of the event to handle.handlerDelegate
A reference to the method handler implementation.
RegisterMouseDownEvent(MouseButtonEventHandler)
Section titled “RegisterMouseDownEvent(MouseButtonEventHandler)”Registers a method handler for the UIElement.MouseDownEvent routed event.
protected void RegisterMouseDownEvent(MouseButtonEventHandler handler)Parameters
Section titled “Parameters”handlerMouseButtonEventHandler
A reference to the method handler implementation.
RegisterMouseMoveEvent(MouseEventHandler)
Section titled “RegisterMouseMoveEvent(MouseEventHandler)”Registers a method handler for the UIElement.MouseMoveEvent routed event.
protected void RegisterMouseMoveEvent(MouseEventHandler handler)Parameters
Section titled “Parameters”handlerMouseEventHandler
A reference to the method handler implementation.
RegisterMouseUpEvent(MouseButtonEventHandler)
Section titled “RegisterMouseUpEvent(MouseButtonEventHandler)”Registers a method handler for the UIElement.MouseUpEvent routed event.
protected void RegisterMouseUpEvent(MouseButtonEventHandler handler)Parameters
Section titled “Parameters”handlerMouseButtonEventHandler
A reference to the method handler implementation.