0

I am using a sample code as mentioned at https://documentation.devexpress.com/#WindowsForms/CustomDocument114785 however I cannot make it float outside the main window as it does in the DevExpress Sample Demo "Free Float in Widget View"

Rohit Sharma
  • 6,136
  • 3
  • 28
  • 47

1 Answers1

0

Apparently float outside window is defined via ItemDragStyle property

view.FreeLayoutProperties.ItemDragStyle = ItemDragStyle.DockingHints;

It looks like a bad API name, i see in WPF library it is better named as DockLayoutManager.FloatingMode.

Niranjan Singh
  • 18,017
  • 2
  • 42
  • 75
Rohit Sharma
  • 6,136
  • 3
  • 28
  • 47