特定のツール インスタンスが Qat 上に直接あるかどうかを決定するには、Location プロパティをチェックします。
' Create TextEditorTool Dim textEditorTool As New TextEditorTool() textEditorTool.Id = "textEditor" textEditorTool.Caption = "textEditor" ' Add to QAT xamRibbon.QuickAccessToolbar.Items.Add(New QatPlaceholderTool("textEditor", QatPlaceholderToolType.Tool)) Debug.Write("textEditorTool.IsOnQat" + textEditorTool.IsOnQat)
// Create TextEditorTool TextEditorTool textEditorTool = new TextEditorTool(); textEditorTool.Id = "textEditor"; textEditorTool.Caption = "textEditor"; // Add to QAT xamRibbon.QuickAccessToolbar.Items.Add(new QatPlaceholderTool("textEditor", QatPlaceholderToolType.Tool)); Debug.Write("textEditorTool.IsOnQat" + textEditorTool.IsOnQat);