バージョン

ToolVerticalWrapPanel クラス

RibbonGroup 内で垂直方向にツールを配列するために使用されるパネル派生要素。
シンタックス
'宣言
 
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);
<igRibbon:ToolVerticalWrapPanel VerticalToolAlignment="Bottom">
   
<igRibbon:ButtonTool Id="B1" Caption="B1" />
   
<igRibbon:ButtonTool Id="B2" Caption="B2" />
</igRibbon:ToolVerticalWrapPanel>
参照