Moving

The user can move the window by clicking on the RadWindow's header and then drag it around the screen.

Silverlight RadWindow Move by Drag

When the RadWindow gets moved, the LayoutChangeStarted and the LayoutChangeEnded events are raised. More about the events can be found here.

To disable the moving of the RadWindow via the UI you have to set the CanMove property to False.

RadWindow radWindow = new RadWindow(); 
radWindow.CanMove = false; 
Dim radWindow As New RadWindow() 
radWindow.CanMove = False 

See Also

In this article