How to delete 'Dynamo for Revit' text in TaskDialog

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

image

image

I don’t believe this is possible using the Revit task dialogues. You’ll have to create your own Winforms.

1 Like

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:

2 Likes

Solved, Thank you very much <3