'宣言 Public Event QuickAccessToolbarModified As QuickAccessToolbarModifiedEventHandler
public event QuickAccessToolbarModifiedEventHandler QuickAccessToolbarModified
イベント ハンドラが、このイベントに関連するデータを含む、QuickAccessToolbarModifiedEventArgs 型の引数を受け取りました。次の QuickAccessToolbarModifiedEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
QuickAccessToolbarChangeType | quickAccessToolbar がどのように変更されたかを指定する列挙体を返します。 |
Tool | 変更に関連したツール(ある場合)を返します。 |
このイベントは、QuickAccessToolbar がユーザーによって修正または場所が変更された時に生成されます。
Imports Infragistics.Win Imports Infragistics.Win.UltraWinToolBars Private Sub UltraToolbarsManager1_QuickAccessToolbarModified(ByVal sender As System.Object, ByVal e As Infragistics.Win.UltraWinToolbars.QuickAccessToolbarModifiedEventArgs) Handles UltraToolbarsManager1.QuickAccessToolbarModified Dim SB As System.Text.StringBuilder = New System.Text.StringBuilder() SB.Append("The QuickAccessToolbar has just been modified.") SB.Append(Environment.NewLine) SB.AppendFormat("The change type was: '{0}'", e.QuickAccessToolbarChangeType) SB.Append(Environment.NewLine) If (Not e.Tool Is Nothing) Then SB.AppendFormat("The tool involved in the change was: '{0}'", e.Tool.Key) Else SB.AppendFormat("The was no tool involved in this change") End If Debug.WriteLine(SB.ToString()) End Sub
using Infragistics.Win; using Infragistics.Win.UltraWinToolBars; using System.Diagnostics; private void ultraToolbarsManager1_QuickAccessToolbarModified(object sender, QuickAccessToolbarModifiedEventArgs e) { System.Text.StringBuilder SB = new System.Text.StringBuilder(); SB.Append("The QuickAccessToolbar has just been modified."); SB.Append(Environment.NewLine); SB.AppendFormat("The change type was: '{0}'", e.QuickAccessToolbarChangeType); SB.Append(Environment.NewLine); if (e.Tool != null) SB.AppendFormat("The tool involved in the change was: '{0}'", e.Tool.Key); else SB.AppendFormat("The was no tool involved in this change"); Debug.WriteLine(SB.ToString()); }