'宣言 Public Property BorderStyle As Infragistics.Win.UIElementBorderStyle
public Infragistics.Win.UIElementBorderStyle BorderStyle {get; set;}
すべてのオペレーティング システムですべてのスタイルが使用可能ではないことに注意してください。プログラムを実行している OS バージョンが特定の境界線スタイルをサポートしていない場合、そのスタイルで書式設定された境界線は実線で表示されます。
Imports System.Diagnostics Imports Infragistics.Win Imports Infragistics.Win.UltraWinExplorerBar Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button3.Click ' Turn on Group animation and set the animation speed to fast. This will animate the ' opening, closing and selection of Groups. Me.ultraExplorerBar1.AnimationEnabled = True Me.ultraExplorerBar1.AnimationSpeed = AnimationSpeed.Fast ' If BorderStyle is set to 'Default' and the resolved border style is not raised, ' set it to raised now. If (Me.ultraExplorerBar1.BorderStyle = UIElementBorderStyle.Default AndAlso Me.ultraExplorerBar1.BorderStyleResolved <> UIElementBorderStyle.Raised) Then Me.ultraExplorerBar1.BorderStyle = UIElementBorderStyle.Raised End If ' If the control style is Listbar or Toolbox, show the built-in context menus. If (Me.ultraExplorerBar1.Style = UltraExplorerBarStyle.Listbar Or _ Me.ultraExplorerBar1.Style = UltraExplorerBarStyle.Toolbox) Then Me.ultraExplorerBar1.ShowDefaultContextMenu = True End If End Sub
using System.Diagnostics; using Infragistics.Win; using Infragistics.Win.UltraWinExplorerBar; private void button3_Click(object sender, System.EventArgs e) { // Turn on Group animation and set the animation speed to fast. This will animate the // opening, closing and selection of Groups. this.ultraExplorerBar1.AnimationEnabled = true; this.ultraExplorerBar1.AnimationSpeed = AnimationSpeed.Fast; // If BorderStyle is set to 'Default' and the resolved border style is not raised, // set it to raised now. if (this.ultraExplorerBar1.BorderStyle == UIElementBorderStyle.Default && this.ultraExplorerBar1.BorderStyleResolved != UIElementBorderStyle.Raised) this.ultraExplorerBar1.BorderStyle = UIElementBorderStyle.Raised; // If the control style is Listbar or Toolbox, show the built-in context menus. if (this.ultraExplorerBar1.Style == UltraExplorerBarStyle.Listbar || this.ultraExplorerBar1.Style == UltraExplorerBarStyle.Toolbox) this.ultraExplorerBar1.ShowDefaultContextMenu = true; }