Notifications
Clear all

[Closed] DotNet UI controls

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

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
    
)

Thanks Serejah! That’ll do for me to make my own list!

yes… and Qt 😈

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
(@denist)
Joined: 10 months ago

Posts: 0

forget about any practical utilization … just have a fun working on this project. I’m doing it all the times