CommandShortcut

in namespace DotVVM.BusinessPack.Controls

Renders a control that triggers a command for a specific combination of keys.

Usage & Scenarios

An invisible control which allows to trigger a command in the viewmodel for a key shortcut.

Sample 1: Basic Usage

Use the Ctrl, Shift and Alt properties to specify modifiers for the shortcut, and use the Key property to specify the shortcut key.

The Command property specifies a command in the viewmodel which is triggered when the key combination is hit.

<p>Press CTRL + Shift + S to Save</p>
<bp:CommandShortcut Ctrl="true"
                    Shift="true"
                    Alt="false"
                    Key="S"
                    Command="{command: Save()}" />

<p>Last save: {{value: LastSave}}</p>
using System;
using DotVVM.Framework.ViewModel;

namespace DotvvmWeb.Views.Docs.Controls.businesspack.CommandShortcut.sample1
{
    public class ViewModel : DotvvmViewModelBase
    {
        public string LastSave { get; set; } = "Not saved yet.";

        public void Save()
        {
            LastSave = DateTime.Now.ToString("HH:MM:ss");
        }
    }
}

Properties

Name Type Description Notes Default Value
property icon Alt Boolean Gets or sets whether the Alt key must be pressed together with the Key.
attribute
inner element
static value
bindable
default
False
property icon Ctrl Boolean Gets or sets whether the Control key must be pressed together with the Key.
attribute
inner element
static value
bindable
default
False
property icon Enabled Boolean Gets or sets whether the Command is triggered when the shortcut is pressed.
attribute
inner element
static value
bindable
default
True
property icon Key ShortcutKeys Gets or sets the shortcut key to be pressed.
attribute
inner element
static value
bindable
default
0
property icon Shift Boolean Gets or sets whether the Shift key must be pressed together with the Key.
attribute
inner element
static value
bindable
default
False

Events

Name Type Description
event icon Command Command Gets or sets the command triggered when the shortcut is pressed.

HTML produced by the control