API Documentation

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

TypeName
GridViewControloldControlThe previous value of the property.
GridViewControlnewControlThe 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

TypeName
RoutedEventroutedEventThe routed event identifier of the event to handle.
DelegatehandlerA 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

TypeName
MouseButtonEventHandlerhandlerA 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

TypeName
MouseEventHandlerhandlerA 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

TypeName
MouseButtonEventHandlerhandlerA reference to the method handler implementation.