ookii-dialogs-wpf icon indicating copy to clipboard operation
ookii-dialogs-wpf copied to clipboard

Content does not support tab characters

Open antikmozib opened this issue 2 years ago • 0 comments
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: ookii

WinForms MessageBox renders the tabs correctly: msgbox

antikmozib avatar Jul 07 '23 03:07 antikmozib