ookii-dialogs-wpf
ookii-dialogs-wpf copied to clipboard
Content does not support tab characters
trafficstars
It seems the TaskDialog doesn't support tab characters. For example,
TaskDialog taskDlg = new()
{
WindowTitle = "Test",
Content = "Lorem ipsum dolor sit amet,"
+ "\n\tconsectetur adipiscing elit."
+ "\n\t\tAliquam erat volutpat."
};
taskDlg.Buttons.Add(new TaskDialogButton(ButtonType.Ok));
taskDlg.ShowDialog();
shows the following:
WinForms MessageBox renders the tabs correctly: