Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Steps to reproduce
TaskDialog.Show("Title", "Message.");
var task_dialog = new TaskDialog("Title") { MainContent = "Message." };
task_dialog.Show();
Actual behaviour
The first method (static Show) promts this message:
The second method (non-static Show) prompts this message:
Expected behaviour
Both methods should generate promts with the same format.
Question
Is there a way to achieve the expected behaviour?
Solved! Go to Solution.