Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Tags
    3. monitor
    Log in to post

    • SOLVED How can I create a frameless fixed size window compatible with high DPI?
      QML and Qt Quick • windows 10 window high dpi monitor configuration • • jeanmilost  

      4
      0
      Votes
      4
      Posts
      58
      Views

      I finally found a solution which seems to work in my case. I added the Qt.MSWindowsFixedSizeDialogHint window flag, which seems to fix the issue. So below is the modified code: ApplicationWindow { // common properties id: awMainForm width: 602 height: 728 flags: Qt.Window | Qt.FramelessWindowHint | Qt.MSWindowsFixedSizeDialogHint visible: true // form content isn't relevant ... }
    • UNSOLVED Qt Webassembly number of screens
      Qt for WebAssembly • webassembly screen monitor • • AliGB  

      1
      0
      Votes
      1
      Posts
      65
      Views

      No one has replied

    • UNSOLVED Raspberry Touch input issue
      Mobile and Embedded • raspberry pi 3 touchscreen touch monitor egfls • • DanSC04  

      1
      0
      Votes
      1
      Posts
      434
      Views

      No one has replied

    • Question on desktop layout with multiple-monitors
      General and Desktop • desktop multiple monitor rect • • pmh4514  

      2
      0
      Votes
      2
      Posts
      1590
      Views

      @pmh4514 maybe you can use the QDesktopWidget int QDesktopWidget::screenNumber(const QWidget * widget = 0) const Returns the index of the screen that contains the largest part of widget, or -1 if the widget not on a screen.
    • [SOLVED] 3 questions
      General and Desktop • resolution monitor external hdd external hard d a lot of data • • Clint Westwood  

      7
      0
      Votes
      7
      Posts
      2170
      Views

      Thanks, I'll have a look at it.