Qtreewidget hide the expand collapsed triangle icon before you remove or change the item item

Source: Internet
Author: User

If you do not want to expand the collapse icon (triangle icon), you can use the following code

{

Hide the icon before the root node item (expand the collapse icon)
Ui.treewidget->setrootisdecorated (FALSE);
If you just hide the expand collapse icon for the root point and the child node remains, you only need the above statement
Ui.treewidget->setstylesheet ("qtreeview::branch:has-children:!has-siblings:closed,\
Qtreeview::branch:closed:has-children:has-siblings{border-image:none; image:none;} \
Qtreeview::branch:open:has-children:!has-siblings,\

Qtreeview::branch:open:has-children:has-siblings{border-image:none; image:none;} ");

}


If you want to change the expand collapse icon (triangle icon) to your own icon, you can use the following code

{
Ui.treewidget->setstylesheet ("qtreeview::branch:has-children:!has-siblings:closed,\
Qtreeview::branch:closed:has-children:has-siblings{border-image:none; Image:url (:/QtXmlTest/Resources/image/ Plus.png);} \
Qtreeview::branch:open:has-children:!has-siblings,\
Qtreeview::branch:open:has-children:has-siblings{border-image:none; Image:url (:/QtXmlTest/Resources/image/ minus.png);} ");

}

Change Plus.png and minus.png to their own pictures.


A complete Qtreewidget example, download address: http://download.csdn.net/download/jxbinwd/10044343


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.