<ig:WebExplorerBar ID="WebExplorerBar1" runat="server" GroupExpandBehavior="SingleExpanded" GroupExpandAction="ButtonClick"> </ig:WebExplorerBar >
WebExplorerBar™ コントロールには、 GroupExpandBehavior と GroupExpandAction という、動作する方法を制御する 2 つのプロパティがあります。GroupExpandBehavior は展開できるグループの数を制御し、GroupExpandAction はこれらのグループを展開するアクションを制御します。
GroupExpandBehavior は以下の値がある列挙体です。
SingleExpanded – 一度に展開できるグループは 1 つだけです。
AllExpanded – すべてのグループを展開して展開したままにしておきます。
AnyExpandable – すべてのグループを展開および縮小できます。デフォルト値。
GroupExpandAction は以下の値がある列挙体です。
HeaderClick – グループ ヘッダーがクリックされた時にグループが展開されるデフォルト値。
ButtonClick– 展開アイコンがクリックされた時に限りグループが展開されます。
HeaderHover – カーソルがグループ ヘッダー上に移動した時にグループが展開されます。
次のコードは、WebExplorerBar でこれらのプロパティを設定する方法を示します。
HTML の場合:
<ig:WebExplorerBar ID="WebExplorerBar1" runat="server" GroupExpandBehavior="SingleExpanded" GroupExpandAction="ButtonClick"> </ig:WebExplorerBar >
Visual Basic の場合:
Me.WebExplorerBar1.GroupExpandBehavior = Infragistics.Web.UI.NavigationControls.GroupExpandBehavior.AnyExpandable Me.WebExplorerBar1.GroupExpandAction = Infragistics.Web.UI.NavigationControls.GroupExpandAction.ButtonClick
C# の場合:
this.WebExplorerBar1.GroupExpandBehavior = Infragistics.Web.UI.NavigationControls.GroupExpandBehavior.AnyExpandable; this.WebExplorerBar1.GroupExpandAction = Infragistics.Web.UI.NavigationControls.GroupExpandAction.ButtonClick;