In This Article

BarGalleryViewModelBase Class

Represents an abstract view model base for a gallery control within a bar control.

public abstract class BarGalleryViewModelBase : BarKeyedObjectViewModelBase, IHasKey
Inheritance:
object ObservableObjectBase BarKeyedObjectViewModelBase object
Derived:
BarGalleryViewModel BarSizeSelectionMenuGalleryViewModel
Implements:
IHasKey

Constructors

BarGalleryViewModelBase()

Initializes a new instance of the class.

protected BarGalleryViewModelBase()

BarGalleryViewModelBase(string?)

Initializes a new instance of the class with the specified key. The label and key tip text are auto-generated.

protected BarGalleryViewModelBase(string? key)
Parameter Type Description
key string

A string that uniquely identifies the control.

BarGalleryViewModelBase(string?, string?, ICommand?)

Initializes a new instance of the class with the specified key, label, and command. The key tip text is auto-generated.

protected BarGalleryViewModelBase(string? key, string? label, ICommand? command)
Parameter Type Description
key string

A string that uniquely identifies the control.

label string

The text label to display, which is auto-generated from the command or key if null.

command ICommand

The command to attach to the control.

Properties

AreSurroundingSeparatorsAllowed

Indicates whether the menu gallery can render surrounding separators.

public bool AreSurroundingSeparatorsAllowed { get; set; }

Property Value

bool:

The default value is true.

CanCloneToRibbonQuickAccessToolBar

Indicates whether the control can be cloned to the ribbon quick-access toolbar.

public bool CanCloneToRibbonQuickAccessToolBar { get; set; }

Property Value

bool:

The default value is true.

Command

The ICommand to attach to the control.

public ICommand? Command { get; set; }

Property Value

ICommand

IsVisible

Indicates whether the control is currently visible.

public bool IsVisible { get; set; }

Property Value

bool:

The default value is true.

ItemContainerTheme

The Avalonia.Styling.ControlTheme to apply to gallery item container elements.

public ControlTheme? ItemContainerTheme { get; set; }

Property Value

ControlTheme

ItemSpacing

The amount of spacing between gallery items.

public double ItemSpacing { get; set; }

Property Value

double:

The default value is 0.0.

ItemTemplate

The Avalonia.Controls.Templates.IDataTemplate used to display the content for each gallery item.

public IDataTemplate? ItemTemplate { get; set; }

Property Value

IDataTemplate

ItemTemplateSelector

The IDataTemplateSelector that picks an Avalonia.Controls.Templates.IDataTemplate used to display the content for each gallery item.

public IDataTemplateSelector? ItemTemplateSelector { get; set; }

Property Value

IDataTemplateSelector

Label

The text label to display.

public string? Label { get; set; }

Property Value

string

MinItemHeight

The minimum item height.

public double MinItemHeight { get; set; }

Property Value

double:

The default value is 16.0.

MinItemWidth

The minimum item width.

public double MinItemWidth { get; set; }

Property Value

double:

The default value is 16.0.

SmallIcon

The object representing a small icon, generally 16x16 size.

public object? SmallIcon { get; set; }

Property Value

object

Title

The string title, which can override the Label when displayed in screen tips and customization UI.

public string? Title { get; set; }

Property Value

string

Inherited Members

Extension Methods