MarkdownView icon indicating copy to clipboard operation
MarkdownView copied to clipboard

Is there any way I can change the default text font size?

Open nielscup opened this issue 6 years ago • 2 comments

nielscup avatar Nov 14 '18 17:11 nielscup

Hello, you can set custom font size by changing the Global static property. In your xaml.cs write : MarkdownView.Global.Paragraph.FontSize = 25; for example :)

ColinLhoest avatar Dec 05 '18 14:12 ColinLhoest

Not working in 0.6.1-pre. This works for me:

      var markdownView = new MarkdownView();
      markdownView.Theme.Paragraph.FontSize = 24.0f;

Suplanus avatar Mar 22 '19 11:03 Suplanus