Microsoft.Common.Slider UI 元素

“滑块”控件允许用户从一系列允许的值中进行选择。

UI 示例

Screenshot of Microsoft.Common.Slider UI element with a range of allowed values.

架构

{
    "name": "memorySize",
    "type": "Microsoft.Common.Slider",
    "min": 1,
    "max": 64,
    "label": "Memory",
    "subLabel": "MB",
    "defaultValue": 24,
    "showStepMarkers": false,
    "toolTip": "Pick the size in MB",
    "constraints": {
        "required": false
    },
    "visible": true
}

示例输出

26

备注

  • minmax 值是必需的。 它们设置滑块的起点和终点。
  • showStepMarkers 属性默认值为真。 仅当最小值到最大值的范围小于等于 100 时,才会显示步长标记。

后续步骤