Table of Contents

Class BaseGridControl

Namespace
StockSharp.Xaml.GridControl
Assembly
StockSharp.Xaml.dll

The grid control.

public class BaseGridControl : GridControl, IPersistable
Inheritance
BaseGridControl
Implements
IPersistable
Derived
Extension Methods

Constructors

BaseGridControl()

Initializes a new instance of the BaseGridControl.

public BaseGridControl()

Fields

AutoScrollProperty

public static readonly DependencyProperty AutoScrollProperty

Field Value

DependencyProperty

Properties

AutoScroll

Automatically to scroll control on the last row added. The default is off.

public bool AutoScroll { get; set; }

Property Value

bool

ColumnVisibility

Get or set column visibility by index.

public BaseGridControl.ColumnVisibilityHolder ColumnVisibility { get; }

Property Value

BaseGridControl.ColumnVisibilityHolder

PopupMenu

Popup menu.

public PopupMenu PopupMenu { get; }

Property Value

PopupMenu

Methods

BeginEndUpdate(Action)

DevExpress.Xpf.Grid.DataControlBase.BeginDataUpdate and DevExpress.Xpf.Grid.DataControlBase.EndDataUpdate auto invoke.

public void BeginEndUpdate(Action action)

Parameters

action Action

Action.

Load(SettingsStorage)

Load settings.

public virtual void Load(SettingsStorage storage)

Parameters

storage SettingsStorage

Settings storage.

LoadExpandedState()

Load group state settings.

public void LoadExpandedState()

OnItemsSourceChanged(object, object)

Called when the ItemsSource property changes.

protected override void OnItemsSourceChanged(object oldValue, object newValue)

Parameters

oldValue object

Old value of the ItemsSource property.

newValue object

New value of the ItemsSource property.

OnLoaded(object, RoutedEventArgs)

protected override void OnLoaded(object sender, RoutedEventArgs e)

Parameters

sender object
e RoutedEventArgs

Save(SettingsStorage)

Save settings.

public virtual void Save(SettingsStorage storage)

Parameters

storage SettingsStorage

Settings storage.

Events

DdeErrorHandler

DDE export error handler.

public event Action<Exception> DdeErrorHandler

Event Type

Action<Exception>

ItemDoubleClick

Event of double-clicking the mouse on the selected item.

public event Action<object, ItemDoubleClickEventArgs> ItemDoubleClick

Event Type

Action<object, ItemDoubleClickEventArgs>

LayoutChanged

Layout changed event.

public event Action LayoutChanged

Event Type

Action