728x90
728x170

RichTextBox 내용 Clear 하는 코드입니다.

 

 

        RichTextBox richTextBox;        

 

        /// <summary>

        /// RichTextBox 내용을 모두 삭제합니다.

        /// </summary>

        void Clear()

        {

            // 1

            TextRange range = new TextRange(richTextBox.Document.ContentStart, richTextBox.Document.ContentEnd);

            range.Text = "";

 

            // 2

            richTextBox.Document.Blocks.Clear();

 

            // 3

            richTextBox.SelectAll();

            richTextBox.Selection.Text = "";

        }

 

728x90
그리드형

'C# > WPF' 카테고리의 다른 글

[WPF] Custom RoutedUICommand 만들기  (0) 2020.07.07
[WPF] TextBox 개행 가능하도록 하기  (0) 2020.07.07
[WPF] 이미지 주소를 BitmapImage 으로 변화하기  (0) 2020.07.07
[WPF] 자식요소 반환하기  (0) 2020.07.07
[WPF] ColorGridBox  (0) 2020.07.06
Posted by kjun.kr
,