Blog

How to Set Height of a Page in WPF Application

Posted by Mahesh Chand Blogs | WPF Oct 07, 2011
Recently, I have been working on a WPF application that has some Windows and Pages. A Page is hosted within a Windows in an XBAP application.

How to Set Height of a Page in WPF Application

Recently, I have been working on a WPF application that has some Windows and Pages. A Page is hosted within a Windows in an XBAP application. The Height, MaxHeight and MinHeight properties do not apply to a Page. The only way you could change the height of a page is using the WindowHeight property.

The following code snippet sets a Page height.

<Page 

       WindowHeight="860"
       WindowWidth="1024"
       Width="1200" Height="768">

You can also set this dynamically from the code on the class constructor or anywhere else.

public DashboardAdministrator()
{

this.InitializeComponent();      

       this.WindowHeight = 860;
       this.WindowWidth = 1024; 

}


Related Readings

comments
COMMENT USING
PREMIUM SPONSORS
Infragistics is experts in technology and design, and passionate about helping you build highly performant and stylish applications that solve problems, deliver inspiration, and maximize results.
SPONSORED BY