■ RichTextBlockFormatter 클래스의 FormatInlines 메소드를 사용해 C# 소스 코드를 RichTextBlock 객체에 표시하는 방법을 보여준다.
※ 비주얼 스튜디오에서 TestProject(Unpackaged) 모드로 빌드한다.
※ TestProject.csproj 프로젝트 파일에서 WindowsPackageType 태그를 None으로 추가했다.
▶ MainPage.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<?xml version="1.0" encoding="utf-8"?> <Page x:Class="TestProject.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" FontFamily="나눔고딕코딩" FontSize="16"> <ScrollViewer VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Auto" Padding="10"> <RichTextBlock Name="richTextBlock" TextWrapping="NoWrap" /> </ScrollViewer> </Page> |
▶ MainPage.xaml.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Documents; using ColorCode; namespace TestProject; /// <summary> /// 메인 페이지 /// </summary> public sealed partial class MainPage : Page { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainPage() /// <summary> /// 생성자 /// </summary> public MainPage() { InitializeComponent(); string sourceCode = @" using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Documents; using ColorCode; namespace TestProject; /// <summary> /// 메인 페이지 /// </summary> public sealed partial class MainPage : Page { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainPage() /// <summary> /// 생성자 /// </summary> public MainPage() { InitializeComponent(); string sourceCode = @"" using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Documents; using ColorCode; using Microsoft.UI.Text; namespace TestProject { /// <summary> /// 메인 페이지 /// </summary> public sealed partial class MainPage : Page { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainPage() /// <summary> /// 생성자 /// </summary> public MainPage() { InitializeComponent(); var paragraph = new Paragraph(); var csharpstring = """"public void Method()\n{\n}""""; var formatter = new RichTextBlockFormatter(); formatter.FormatInlines(csharpstring, Languages.CSharp, paragraph.Inlines); this.richTextBlock.Blocks.Add(paragraph); } #endregion } } ""; Paragraph paragraph = new Paragraph(); RichTextBlockFormatter richTextBlockFormatter = new RichTextBlockFormatter(); richTextBlockFormatter.FormatInlines(sourceCode, Languages.CSharp, paragraph.Inlines); this.richTextBlock.Blocks.Add(paragraph); } #endregion } "; Paragraph paragraph = new Paragraph(); RichTextBlockFormatter richTextBlockFormatter = new RichTextBlockFormatter(); richTextBlockFormatter.FormatInlines(sourceCode, Languages.CSharp, paragraph.Inlines); this.richTextBlock.Blocks.Add(paragraph); } #endregion } |