Skip to content
Auto
Products

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 GridViewElement

Inheritance: object → GridViewElement

Derived:

public GridViewElement()

Gets or sets grid view control, which contains this object.

public GridViewControl GridView { get; set; }

GridViewControl

Grid view control, which contains this object.

OnGridViewChanged(GridViewControl, GridViewControl)

Section titled “OnGridViewChanged(GridViewControl, GridViewControl)”

Called when the GridView property is modified.

protected virtual void OnGridViewChanged(GridViewControl oldControl, GridViewControl newControl)

Refresh the GridViewControl.

protected void RefreshView()

Registers a method handler for a particular routed event.

protected void RegisterEvent(RoutedEvent routedEvent, Delegate handler)
  • routedEvent RoutedEvent
    The routed event identifier of the event to handle.
  • handler Delegate
    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)

Registers a method handler for the UIElement.MouseMoveEvent routed event.

protected void RegisterMouseMoveEvent(MouseEventHandler handler)

RegisterMouseUpEvent(MouseButtonEventHandler)

Section titled “RegisterMouseUpEvent(MouseButtonEventHandler)”

Registers a method handler for the UIElement.MouseUpEvent routed event.

protected void RegisterMouseUpEvent(MouseButtonEventHandler handler)