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