' Create TextEditorTool Dim textEditorTool As New TextEditorTool() textEditorTool.Id = "textEditor" textEditorTool.Caption = "textEditor" textEditorTool.KeyTip = "TE" ' Add to QAT xamRibbon.QuickAccessToolbar.Items.Add(New QatPlaceholderTool("textEditor", QatPlaceholderToolType.Tool)) Debug.Write("textEditorTool.IsQatCommonTool" + textEditorTool.IsQatCommonTool)
// Create TextEditorTool TextEditorTool textEditorTool = new TextEditorTool(); textEditorTool.Id = "textEditor"; textEditorTool.Caption = "textEditor"; textEditorTool.KeyTip = "TE"; // Add to QAT xamRibbon.QuickAccessToolbar.Items.Add(new QatPlaceholderTool("textEditor", QatPlaceholderToolType.Tool)); Debug.Write("textEditorTool.IsQatCommonTool" + textEditorTool.IsQatCommonTool);