BasePanelView
StockSharp.Xaml.Panels.Maui
Base class for panel views.
Inherits: ContentView
Properties
IsReadOnly
public bool IsReadOnly { get; set; }
value = basePanelView.IsReadOnly
basePanelView.IsReadOnly = value
Gets or sets whether the panel is read only.
Methods
OnDataChanged
protected virtual void OnDataChanged()
basePanelView.OnDataChanged()
Raises the DataChanged event.
OnSelectionChanged
protected virtual void OnSelectionChanged(object selectedItem)
basePanelView.OnSelectionChanged(selectedItem)
Raises the SelectionChanged event.
Events
DataChanged
public event EventHandler DataChanged
basePanelView.DataChanged += handler
Data changed event.
SelectionChanged
public event EventHandler<object> SelectionChanged
basePanelView.SelectionChanged += handler
Selection changed event.
Fields
IsReadOnlyProperty
public static readonly BindableProperty IsReadOnlyProperty
value = BasePanelView.IsReadOnlyProperty
Is read only bindable property.