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

Maximize Window

1 Answer 62 Views
Window
This is a migrated thread and some comments may be shown as answers.
Marco Teodoro
Top achievements
Rank 1
Marco Teodoro asked on 18 May 2011, 11:46 AM
How can i maximize a radwindows from codebehind?

Best regards

1 Answer, 1 is accepted

Sort by
0
Dani
Telerik team
answered on 19 May 2011, 12:20 PM
Hello Marco,

To maximize the RadWindow control, use the WindowState property, either in XAML:

<telerik:RadWindow x:Class="SilverlightApplication1.RadWindowControl"
    WindowState="Maximized">
...
</telerik:RadWindow>
 or in code-behind in some event handler:

RadWindowControl w = new RadWindowControl();
w.WindowState = WindowState.Maximized;
w.Show();

You can also take a look at the Configurator online example to grasp a better idea of RadWindow behavior.

I hope this helps.


Kind regards,
Dani
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Window
Asked by
Marco Teodoro
Top achievements
Rank 1
Answers by
Dani
Telerik team
Share this question
or