'宣言 Public Class ToolVerticalWrapPanel Inherits System.Windows.Controls.Panel
public class ToolVerticalWrapPanel : System.Windows.Controls.Panel
これは RibbonGroup のデフォルト パネルですが、VerticalToolAlignment プロパティを使用して RibbonGroup 内のツールのサブセットの垂直方向の配布を制御するために明示的に使用することもできます。
Dim b1 As New ButtonTool() b1.Caption = "B1" Dim b2 As New ButtonTool() b2.Caption = "B2" Dim toolVWrapPanel As New ToolVerticalWrapPanel() toolVWrapPanel.VerticalToolAlignment = RibbonPanelVerticalToolAlignment.Bottom toolVWrapPanel.Children.Add(b1) toolVWrapPanel.Children.Add(b2)
ButtonTool b1 = new ButtonTool(); b1.Caption = "B1"; ButtonTool b2 = new ButtonTool(); b2.Caption = "B2"; ToolVerticalWrapPanel toolVWrapPanel = new ToolVerticalWrapPanel(); toolVWrapPanel.VerticalToolAlignment = RibbonPanelVerticalToolAlignment.Bottom; toolVWrapPanel.Children.Add(b1); toolVWrapPanel.Children.Add(b2);