I’m learning creat TaskDialog using Revit API but ‘Dynamo for Revit’ alway show. How to turn off it. (Rhythm package can be off)


I’m learning creat TaskDialog using Revit API but ‘Dynamo for Revit’ alway show. How to turn off it. (Rhythm package can be off)


I don’t believe this is possible using the Revit task dialogues. You’ll have to create your own Winforms.
You need to set the prefix to be false, this is because it is set to true as default
eg add this line somewhere within your code
mainDialog.TitleAutoPrefix = false
This is the code used within the Rhythm package, and you can see that John Peirson has set the TitleAutoPrefix to false:
Solved, Thank you very much <3