简体   繁体   中英

PyQT4 QWebView not resizing correctly

I have a QWebview in a grid layout, along with other widgets. When the user resizes the window, the QWebview doesn't resize, but the other widgets do. How can I make the QWebview resize correctly?

Most likely you're not using correct sizePolicy. Take a look here http://doc.qt.nokia.com/4.6/layout.html

Does using other widget in place of QWebView change anything?

in the dialog class's resizeEvent, one that extends QDialog, call webView->setGeometry, and this->resize, this->update.

hint: check if size changed via the QResizeEvent *ptr

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM