Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.38 KB

content-controls-dialogs.md

File metadata and controls

28 lines (20 loc) · 1.38 KB
title page_title description slug tags published position
Content Control Properties Dialog
Content Control Properties Dialog
Check our "Content Controls Properties Dialog" documentation article for the RadRichTextBox WPF control.
richtextbox-dialogs-content-controls
link,insert
true
1

Content Control Properties Dialog

This dialog allows you to edit the properties of the [content controls]({%slug radrichtextbox-features-document-elements-hyperlink%}) in the document.

An image showing the content controls properties dialog of RadRichTextBox for WPF

The dialog can be opened from the Properties button in the Developer tab of the [RadRichTextBoxRibbonUI]({%slug radrichtextbox-features-radrichtextboxribbonui%}).

An image showing the button that opens the content controls properties dialog of RadRichTextBox for WPF

Showing the Dialog Manually

The dialog can be shown by executing the ShowContentControlPropertiesDialogCommand. See how to bind the command to an external button in the [Commands]({%slug radrichtextbox-features-commands%}) article.

[C#] Executing the show dialog command

{{region radrichtextbox-dialogs-content-controls-0}} this.richTextBox.Commands.ShowContentControlPropertiesDialogCommand.Execute(null); {{endregion}}