Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to know the screen resolution so that I can set the height of an element according to the resolution in a Windows 8 app.

share|improve this question

6 Answers

up vote 32 down vote accepted

How about this?

var bounds = Window.Current.Bounds;

double height = bounds.Height;

double width = bounds.Width;
share|improve this answer
This works too. Thanks Krishna! :) – a_rahmanshah May 31 '12 at 13:02
3  
Use this. Don't assume you are in the primary screen as done in Md's answer – Robert Levy Jun 1 '12 at 4:16
Good Point @RobertLevy. – Preet Sangha Jun 1 '12 at 5:00
1  
This doesn't get the screen size, only your window size. If you are running snapped it will be incorrect. If all you need is the window size this will work. – Jon Tackabury Sep 10 '12 at 19:59
it is now a double, not an int. – balint Sep 22 '12 at 1:51
show 2 more comments

Are you using XAML? If so it does not matter. Use the Grid control. It will fill up all available space. Read Jerry's blog as to why you might want to use xaml for WinRT development.

share|improve this answer
I have two rows, one with height 70 and another with *. I have a textBox which is in the second row. I want to the textbox to change it's height according to resolution. – a_rahmanshah May 31 '12 at 6:50
1  
by default a TextBox style will fill the entire area it is given. This is the Silverlight style, but should still apply, or you can assign this style msdn.microsoft.com/en-us/library/cc645061%28v=VS.95%29.aspx – Shawn Kendrot May 31 '12 at 7:35

Probably the best option for DirectX-enabled apps, however, applicable to all other kinds of metro apps is:

http://blogs.microsoft.co.il/blogs/tomershamam/archive/2012/07/24/get-screen-resolution-in-windows-8-metro-style-application.aspx

P.S. C'mon, getting window size to determine screen resolution? What about snapped/filled modes? This world is so much broken :-/

share|improve this answer
Height does not change in snapped/filled modes ;) – a_rahmanshah Aug 15 '12 at 14:39
And thanks. Anyways, I made it to work without setting the height. :) – a_rahmanshah Aug 15 '12 at 14:40

apparently i don't have enough rep to reply to posts yet, but in regards to @Krishna's answer, it may be worth noting that his solution requires:

using Windows.UI.Xaml;

probably not an issue for most of you, but in my case (trying to grab resolution of executing app from an imported library), it wasn't there by default.

hope this helps someone else...

share|improve this answer

Getting the bounds of current window is easy. But say if you want to set a large font size for bigger screen (resolution is same as 10" device, but screen is 27"), this wont help. Refer Scaling to different screens I used the following method to detect screen size & change text block font style appropriately.

         void detectScreenType()
    {
        double dpi = DisplayProperties.LogicalDpi;
        var bounds = Window.Current.Bounds;
        double h;
        switch (ApplicationView.Value)
        {
            case ApplicationViewState.Filled:
                h = bounds.Height;
                break;

            case ApplicationViewState.FullScreenLandscape:
                h = bounds.Height;
                break;

            case ApplicationViewState.Snapped:
                h = bounds.Height;
                break;

            case ApplicationViewState.FullScreenPortrait:
                h = bounds.Width;
                break;

            default:
                return;
        }
        double inches = h / dpi ;
        string screenType = "Slate";
        if (inches < 10)
        {
            screenType = "Slate";
        } else if (inches < 14) {
            screenType = "WorkHorsePC";
        }
        else 
        {
            screenType = "FamilyHub";
        }
        ApplicationDataContainer localSettings = Windows.Storage.ApplicationData.Current.LocalSettings;
        localSettings.Values["screenType"] = screenType;
    }
share|improve this answer

To determine screen resolution....

Rectangle resolution = Screen.PrimaryScreen.Bounds;
int height=resolution.Size.Height;
int width=resolution.Size.Width;
share|improve this answer
Awesome! Thanks KamruZzaman! :) – a_rahmanshah May 31 '12 at 13:02
I can't find "Screen". has it been deprecated? – Elad Katz Jul 23 '12 at 9:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.