• <legend id='NUJ99'><style id='NUJ99'><dir id='NUJ99'><q id='NUJ99'></q></dir></style></legend>

      • <bdo id='NUJ99'></bdo><ul id='NUJ99'></ul>

      <small id='NUJ99'></small><noframes id='NUJ99'>

      1. <i id='NUJ99'><tr id='NUJ99'><dt id='NUJ99'><q id='NUJ99'><span id='NUJ99'><b id='NUJ99'><form id='NUJ99'><ins id='NUJ99'></ins><ul id='NUJ99'></ul><sub id='NUJ99'></sub></form><legend id='NUJ99'></legend><bdo id='NUJ99'><pre id='NUJ99'><center id='NUJ99'></center></pre></bdo></b><th id='NUJ99'></th></span></q></dt></tr></i><div id='NUJ99'><tfoot id='NUJ99'></tfoot><dl id='NUJ99'><fieldset id='NUJ99'></fieldset></dl></div>
        <tfoot id='NUJ99'></tfoot>

        PyQt5标签被切断

        时间:2023-08-05
      2. <tfoot id='QkC5Z'></tfoot>

        <i id='QkC5Z'><tr id='QkC5Z'><dt id='QkC5Z'><q id='QkC5Z'><span id='QkC5Z'><b id='QkC5Z'><form id='QkC5Z'><ins id='QkC5Z'></ins><ul id='QkC5Z'></ul><sub id='QkC5Z'></sub></form><legend id='QkC5Z'></legend><bdo id='QkC5Z'><pre id='QkC5Z'><center id='QkC5Z'></center></pre></bdo></b><th id='QkC5Z'></th></span></q></dt></tr></i><div id='QkC5Z'><tfoot id='QkC5Z'></tfoot><dl id='QkC5Z'><fieldset id='QkC5Z'></fieldset></dl></div>

          • <bdo id='QkC5Z'></bdo><ul id='QkC5Z'></ul>

            <small id='QkC5Z'></small><noframes id='QkC5Z'>

                <legend id='QkC5Z'><style id='QkC5Z'><dir id='QkC5Z'><q id='QkC5Z'></q></dir></style></legend>
                  <tbody id='QkC5Z'></tbody>

                  本文介绍了PyQt5标签被切断的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  当我运行这个程序时,我的部分标签被切断了.有没有什么办法解决这一问题?我猜它与 setFont 有关,因为当我删除 l1.setFont 时,所有文本都会显示.如果可能,请列出不会过多改变 GUI 的解决方案.

                  When I run this program, parts of my label gets cut off. Is there any way to fix this? I'm guessing it has to do with setFont, because when I remove l1.setFont all the text shows. If possible, please list solutions that doesn't alter the GUI too much.

                  import sys
                  from PyQt5 import QtGui, QtWidgets, QtCore, Qt
                  from PyQt5.QtWidgets import *
                  from PyQt5.QtGui import *
                  from PyQt5.QtCore import *
                  
                  class App(QtWidgets.QMainWindow):
                      def __init__(self):
                      super(App, self).__init__()
                      self.setWindowTitle('Test GUI')
                      self.setWindowIcon(QtGui.QIcon('logo.png'))
                      self.setGeometry(800, 500, 500, 500)
                      self.ui()
                  
                  def ui(self):    
                      l1 = QtWidgets.QLabel(self)
                      l1.setText('Text')
                      l1.setFont(QtGui.QFont('Arial', 50))  
                      l1.move(100, 100)
                  
                      self.show()
                  
                  def main():
                      app = QtWidgets.QApplication(sys.argv)
                      GUI = App()
                      sys.exit(app.exec_())
                  
                  if __name__ == '__main__':
                      main()
                  

                  推荐答案

                  既然你改变了字体的大小,你必须调整字体的大小,你必须使用 adjustSize():

                  Since you have changed the size of the font you must adjust the size for that you must use adjustSize():

                  def ui(self):    
                      l1 = QtWidgets.QLabel(self)
                      l1.setText('Text')
                      l1.setFont(QtGui.QFont('Arial', 50)) 
                      l1.adjustSize() 
                      l1.move(100, 100)
                      self.show()
                  

                  这篇关于PyQt5标签被切断的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:使用 QComboBox 选择显示的不同小部件集 下一篇:如何将 QWebEngineProfile 设置为 QWebEngineView

                  相关文章

                  最新文章

                1. <legend id='ROcBe'><style id='ROcBe'><dir id='ROcBe'><q id='ROcBe'></q></dir></style></legend>

                  <small id='ROcBe'></small><noframes id='ROcBe'>

                2. <i id='ROcBe'><tr id='ROcBe'><dt id='ROcBe'><q id='ROcBe'><span id='ROcBe'><b id='ROcBe'><form id='ROcBe'><ins id='ROcBe'></ins><ul id='ROcBe'></ul><sub id='ROcBe'></sub></form><legend id='ROcBe'></legend><bdo id='ROcBe'><pre id='ROcBe'><center id='ROcBe'></center></pre></bdo></b><th id='ROcBe'></th></span></q></dt></tr></i><div id='ROcBe'><tfoot id='ROcBe'></tfoot><dl id='ROcBe'><fieldset id='ROcBe'></fieldset></dl></div>

                    1. <tfoot id='ROcBe'></tfoot>
                        <bdo id='ROcBe'></bdo><ul id='ROcBe'></ul>