Notifications
Clear all
[Closed] DotNet UI controls
Aug 07, 2017 12:29 pm
Is there a way programmatically to get a list of all the dotnet UI controls you can add in maxscript?
Likewise with dotNetClass…
Failing that… what list should I use if I was to collect these manually?
6 Replies
Aug 07, 2017 12:29 pm
That’s the list. Trickiest part now is to check whether one can be used in a rollout
targetClass = dotNetClass "system.windows.forms.control"
appdomain = (dotNetClass "system.appdomain").currentdomain.getassemblies()
for a in appdomain do (
types = a.gettypes()
for t in types where t.isSubClassOf targetClass do format "%
" t.fullName
)
Aug 07, 2017 12:29 pm
Basically as part of my interactive rollout builder I’d like to add the dotNet controls that we all use frequently as they can be added to a standard max form.
The WPF stuff I’m less familiar with, can this be added to a standard max form?
And the QT stuff is only for python UIs yes?
1 Reply
forget about any practical utilization … just have a fun working on this project. I’m doing it all the times