Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Resize multiple nodes....container issue (Read 1128 times)
PDM.
Senior Member
****
Offline


I love YaBB 1G - SP1!

Posts: 256
Joined: Dec 2nd, 2010
Resize multiple nodes....container issue
Jul 23rd, 2014 at 2:35pm
Print Post  
  form.Selection.AllowMultipleSelection = true;
  form.AllowMultipleResize = true;

All the nodes resize at multiple time, but containers no.
Something I forgot?
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Resize multiple nodes....container issue
Reply #1 - Jul 23rd, 2014 at 3:53pm
Print Post  
The default HandlesStyle of containers allows only moving them. If you start resizing from another node in multiple selection, the containers should resize too anyway. If you wish to also allow resizing when the mouse points a container, change the containers' HandlesStyle and EnabledHandles properties:

Code
Select All
ctr.HandlesStyle = HandlesStyle.SquareHandles;
ctr.EnabledHandles = AdjustmentHandles.All;
 



I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint