This is a migrated thread and some comments may be shown as answers.

RadWindow can't move

1 Answer 156 Views
Window
This is a migrated thread and some comments may be shown as answers.
ofer alper
Top achievements
Rank 1
ofer alper asked on 19 Nov 2009, 10:40 AM
Hi,

I created a rad window. Its canMove property is true, but i can't move it. Only after i minimize it i can mover it.
I first open RadGridView and then open a RadWindow

            RadWindow window = new RadWindow();
            window.Height = 300;
            window.Width = 300;
            window.CanMove = true;
            window.Header = "ofer test";
            window.WindowState = WindowState.Maximized;
            window.WindowStartupLocation = WindowStartupLocation.CenterScreen;
            window.Show();

Thanks,
Ofer

1 Answer, 1 is accepted

Sort by
0
Miroslav Nedyalkov
Telerik team
answered on 20 Nov 2009, 01:56 PM
Hello Ofer,

You cannot move it, because it is maximized and the windows cannot be moved when maximized. You could try to set its WindowState property to WindowState.Normal instead to WindowState.Maximized.

Greetings,
Miroslav Nedyalkov
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Window
Asked by
ofer alper
Top achievements
Rank 1
Answers by
Miroslav Nedyalkov
Telerik team
Share this question
or