New to Telerik UI for WPF? Download free 30-day trial

Manage Bibliographic References Dialog

This dialog allows you to insert and edit bibliographic references in the document.

An image showing the bibliographic references dialog of RadRichTextBox for WPF

An image showing the bibliographic references dialog of RadRichTextBox for WPF

The insert bibliographic dialog can be opened from the Add New Source option of the Insert Citation drop down button in the References tab of the RadRichTextBoxRibbonUI or via the in the same option in the right-click menu (context menu) of RadRichTextBox.

The manage bibliographic references can be opened with the Manage Sources button.

An image showing the button that opens the bibliographic references dialog of RadRichTextBox for WPF

Showing the Dialog Manually

The dialogs can be shown by executing the ShowManageBibliographicSourcesDialogCommand and ShowAddNewBibliographicReferenceDialogCommand. See how to bind the commands to external buttons in the Commands article.

Executing the show dialog command

this.richTextBox.Commands.ShowManageBibliographicSourcesDialogCommand.Execute(null); 
Alternatively, you can call the ShowAddNewBibliographicSourceDialog and ShowManageBibliographicSourcesDialog methods of RadRichTextBox.

Using the show dialog method

this.richTextBox.ShowAddNewBibliographicSourceDialog(); 
In this article