Screen resolution

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Frank

    #1

    Screen resolution

    Hello,


    What is an acceptable screen resolution for windows forms. I am designing an
    application and I don't want the windows forms to be too big or too small.
    Thank you in advance.


  • Martin Rosén-Lidholm

    #2
    Re: Screen resolution

    Frank,

    I hate to say this, but it *really* depends.

    In my latest WinForm project, coming from technology, I wanted 1280 width.

    After a battle ;-) with product owners et.al., we decided on 1024. 800 often
    times is *too* small and looks ridicules in 1600.

    The latter is to some extent solved by using resizing with anchors and other
    techniques but the optimizations are always done with on resolution in mind.

    Regards,
    // Martin Rosén-Lidholm

    "Frank" <rank@nowhere.c om> wrote in message
    news:OYVupjpjEH A.3944@tk2msftn gp13.phx.gbl...[color=blue]
    > Hello,
    >
    >
    > What is an acceptable screen resolution for windows forms. I am designing[/color]
    an[color=blue]
    > application and I don't want the windows forms to be too big or too small.
    > Thank you in advance.
    >
    >[/color]


    Comment

    • Rakesh Rajan

      #3
      RE: Screen resolution

      Hi,

      800*640 is what most clients will definitely have nowadays. But of course,
      1024*768 would be what we would prefer :)....and as Martin said, it depends a
      lot of the type of app you are developing...

      i would like to add that we could control a significant portion of our
      desktop screen size requirement by using the various controls like tab etc...

      Rakesh

      "Frank" wrote:
      [color=blue]
      > Hello,
      >
      >
      > What is an acceptable screen resolution for windows forms. I am designing an
      > application and I don't want the windows forms to be too big or too small.
      > Thank you in advance.
      >
      >
      >[/color]

      Comment

      • Steve McLellan

        #4
        Re: Screen resolution

        Hi,

        Having been faced with this we eventually went with providing two versions
        of some stuff; one optimized for 1280 and the other for 1024. The danger (as
        I discovered) is that it's very difficult to downsize things once they're
        done - my dev machine is running 1280 but it's probably most people with 17"
        CRTs won't be at that resolution. Our market is fairly high-end so I'm not
        catering for people running at 800X600 specifically (some stuff will need to
        scroll). Make sure you design at the lowest res you plan to support (either
        800X600 or 1024X768), you can always make it look nicer at higher
        resolutions afterwards.

        Steve

        "Frank" <rank@nowhere.c om> wrote in message
        news:OYVupjpjEH A.3944@tk2msftn gp13.phx.gbl...[color=blue]
        > Hello,
        >
        >
        > What is an acceptable screen resolution for windows forms. I am designing[/color]
        an[color=blue]
        > application and I don't want the windows forms to be too big or too small.
        > Thank you in advance.
        >
        >[/color]


        Comment

        Working...