<CS>
//' (0) create an instance of task dialog
to set more options.
TaskDialog
myDialog = new TaskDialog("Revit UI Labs - タスクダイアログ オプション");
//' (1) set the
main area. these appear at the upper portion of the dialog.
//'
myDialog.MainIcon = TaskDialogIcon.TaskDialogIconWarning;
//' or
TaskDialogIcon.TaskDialogIconNone.
myDialog.MainInstruction = "主要指示: Revit UI Lab 3 タスクダイアログです";
myDialog.MainContent = “主要コンテンツ: 詳細説明を追加してください";
if (stepByStep)
myDialog.Show();
</CS>