Skip to content

DevExpress-Examples/winforms-richedit-create-log-viewer-application

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rich Text Editor for WinForms - How to Create a Log Viewer Application

This example illustrates how to use RichEditControl in a "Log Viewer"-like application.

image

Implementation Details

First, adjust the default view settings in the form's constructor and default document settings in the RichEditControl.DocumentLoaded / RichEditControl.EmptyDocumentCreated event handlers, correspondingly.

Then, use the SubDocument.AppendText method to append a new message to the RichEditControl.

Files to Review