Элемент MiniToolbar
Представляет контекстную панель инструментов.
Использование
<MiniToolbar
Name = "xs:string">
child elements
</MiniToolbar>
Атрибуты
attribute | Тип | Обязательно | Описание |
---|---|---|---|
имя; |
xs:string |
Да |
Дочерние элементы
Элемент | Описание |
---|---|
MenuGroup |
Должно выполняться по крайней мере один раз |
Родительские элементы
Элемент |
---|
ContextPopup.MiniToolbars |
Комментарии
Необязательный элемент.
Может выполняться один или несколько раз для каждой панели ContextPopup.MiniToolbars.
В отличие от элемента ContextMenu , элемент MiniToolbar остается видимым при щелчке элемента на панели инструментов.
При отображении без contextMenuмини-панель инструментов исчезает, когда указатель мыши перемещается в сторону.
Примечание
Из-за такого исчезания объект ContextMenu должен отображаться в непосредственной близости от указателя мыши.
Так как элементы управления в мини-панели не доступны с клавиатуры, доступные команды должны быть доступны в другом месте пользовательского интерфейса ленты.
Примеры
В следующем примере демонстрируется базовая разметка для представления ContextPopup .
В этом разделе кода показан набор объявлений элементов управления MiniToolbar .
<ContextPopup>
<!--
The MiniToolbars and Context Menus are the basic ingredients for
the contextual UI popup.
Mix-and-match and associate each combination with a ContextMap Command
invoked in code.
-->
<ContextPopup.MiniToolbars>
<MiniToolbar Name="MiniToolbar1">
<MenuGroup Class="MajorItems">
<Button CommandName="cmdCut" />
<Button CommandName="cmdCopy" />
<Button CommandName="cmdPaste" />
</MenuGroup>
<MenuGroup>
<ToggleButton CommandName="cmdToggleButton" />
<DropDownButton CommandName="cmdButtons">
<MenuGroup>
<Button CommandName="cmdButton1" />
<Button CommandName="cmdButton2" />
<Button CommandName="cmdButton3" />
</MenuGroup>
</DropDownButton>
</MenuGroup>
</MiniToolbar>
<MiniToolbar Name="MiniToolbar2">
<MenuGroup>
<Button CommandName="cmdButton1" />
<Button CommandName="cmdButton2" />
<Button CommandName="cmdButton3" />
</MenuGroup>
</MiniToolbar>
</ContextPopup.MiniToolbars>
<ContextPopup.ContextMenus>
<ContextMenu Name="ContextMenu1">
<MenuGroup>
<Button CommandName="cmdCut" />
<Button CommandName="cmdCopy" />
<Button CommandName="cmdPaste" />
</MenuGroup>
</ContextMenu>
<ContextMenu Name="ContextMenu2">
<MenuGroup>
<ToggleButton CommandName="cmdToggleButton" />
</MenuGroup>
<MenuGroup>
<Button CommandName="cmdButton1" />
<Button CommandName="cmdButton2" />
<Button CommandName="cmdButton3" />
</MenuGroup>
</ContextMenu>
<ContextMenu Name="ContextMenu4">
<MenuGroup>
<Button CommandName="cmdCut" />
<Button CommandName="cmdCopy" />
<Button CommandName="cmdPaste" />
</MenuGroup>
<MenuGroup>
<ToggleButton CommandName="cmdToggleButton" />
</MenuGroup>
<MenuGroup>
<Button CommandName="cmdButton1" />
<Button CommandName="cmdButton2" />
<Button CommandName="cmdButton3" />
</MenuGroup>
</ContextMenu>
</ContextPopup.ContextMenus>
<ContextPopup.ContextMaps>
<ContextMap CommandName="cmdContextMap1"
ContextMenu="ContextMenu1"/>
<ContextMap CommandName="cmdContextMap2"
ContextMenu="ContextMenu2"
MiniToolbar="MiniToolbar1"/>
<ContextMap CommandName="cmdContextMap3"
MiniToolbar="MiniToolbar2"/>
<ContextMap CommandName="cmdContextMap4"
ContextMenu="ContextMenu4"/>
</ContextPopup.ContextMaps>
</ContextPopup>
Сведения об элементе
- Минимальная поддерживаемая система: Windows 7
- Может быть пустым: Нет