Notifications
Clear all
[Closed] DotNet Forms dock like a dialogbar
Nov 11, 2015 12:32 pm
hi,I’m trying to write something using dotnet form,
Can dotnet forms dock like a dialogbar?and how to?
i really don’t like the floating panels
3 Replies
Nov 11, 2015 12:32 pm
#1 only max build-in dialog can be docked using built-in max system
but you can make .net dialog (or form, panel, control, etc.) a child of max dialog
#2 some of my users have 4-5 my tools opened at the same time. they all can’t be docked.
working with multiple (usually two) monitors i personally prefer floating tools
1 Reply
thanks,denis
make .net dialog as a child of max dialog
what’s that mean?any example?
let max dialog as a container or only difine the relative localization?
Nov 11, 2015 12:32 pm
try(destroydialog bbtest)catch()
rollout bbtest "Dotnet In MAX" width:300 height:300
(
dotNetControl hForm "System.Windows.Forms.Form" width:200 height:100 pos:[0,0]
on bbtest open do
(
hForm.show()
)
)
createdialog bbtest
dotnet form will outside of the max dialog
how to make it right?