Hi dongsik cho,
We suggest using
the “SetFloatingWindowRect()”
method to change the size of the float window in DockingManager. We have prepared
a sample based on your requirement. In this sample, we have changed the size of
the float window within the DockStateChanging Event. Please refer to the
attached sample and video for your reference.
Code Snippets:
private void Docking_DockStateChanging(object sender,
DockStateChangingEventArgs args)
{
Rect newRect
= new Rect(100, 100, 800, 200);
SfDockingManager.SetFloatingWindowRect(args.TargetElement, newRect);
}
Regards,
Bagavathi Perumal A
Attachment:
SfDockingManager_UWP_5c91a299.zip