QToolBar上的控制項靠右側對齊的方法

來源:互聯網
上載者:User

     有時候,你會想在QToolBar的右側添加一個button,這時候,會首先想到在QToolBar上添加一個QSpacerItem,來實現button的右側對齊。但是這種方法在QToolBar上並不會達到預期的效果,原因是QSpacerItem不是繼承自QWidget,因此你並不能使用QToolBar::addWidget()來添加一個QSpacerItem。

    在此,用另一種方法的實現了預期的效果。首先,建立一個QWidget,設定其大小策略為擴充,然後將其添加到QToolBar的合適位置中。至此即實現了預期的效果。

    //2011-11-23-QTooBar中最右一個表徵圖的靠右對齊方式     QWidget *spacer = new QWidget(this);    spacer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);    //toolBar is a pointer to an existing toolbar    toolBar->addWidget(spacer);

效果預覽:(注意最右側的表徵圖的位置) 

 參考資料:

http://www.cuteqt.com/bbs/viewthread.php?tid=1566 (某論壇的一個貼子)

http://blog.cnnbboy.com/?p=493 (翻譯)

http://www.ffuts.org/blog/right-aligning-a-button-in-a-qtoolbar/ (原文)

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.