zoukankan      html  css  js  c++  java
  • Min Resolution&DPI

    1.    Screen resolution: 800*600 , 96DPI (100%)

    Work Area Size as follow:

    800*560 (subtract bottom/top taskbar height)

    686*600 (subtract left/Right  taskbar height)

    2.    Screen resolution: 1024*768, 120DPI (125%)

    Get Work Area Size  from  System.Windows.Forms.Screen.PrimaryScreen.Bounds.Size :

    1024*720(subtract bottom/top taskbar height)

    933*768(subtract  left/Right  taskbar height)

    Get Work Area Size from  SystemParameters.WorkArea.Size:

    820.0*576.8(subtract bottom/top taskbar height)

    747.2*615.2(subtract  left/Right  taskbar height)

    This size has divided by DPI(125%).

     

    3.       Screen resolution:1280*800, 144DPI (150%)

    Get Work Area Size from  System.Windows.Forms.Screen.PrimaryScreen.Bounds.Size :

    1280*744 (subtract bottom/top taskbar height)

    1189*800 (subtract  left/Right  taskbar height)

    Get Work Area Size from  SystemParameters.WorkArea.Size:

    854.0*496.7(subtract bottom/top taskbar height)

    793.3*534.0(subtract  left/Right  taskbar height)

    This size has divided by DPI(150%).

     

     

    So , the Min Width is 686, Min Height is 496.7.

    Is it Right?

  • 相关阅读:
    Spark 学习笔记
    python-write_text
    python-logging
    耳机能听到自己说话的声音
    AudiosessionSetActive
    error link 2019 waveout
    unknow Unknown type name 'NSString'
    windbg获取打印
    立体声混音设备
    MAC book 无法删除普通用户的解决办法
  • 原文地址:https://www.cnblogs.com/xiaokang088/p/2933610.html
Copyright © 2011-2022 走看看