Qt Designer,在“对象检查器”窗格中对窗口小部件重新排序

时间:2018-07-01 14:36:14

标签: qt

我的布局中有一堆按钮和水平垫片。它们按顺序显示在我的GUI窗口中。但是,因为我是在不同的时间(意识到它们是必需的)创建的,所以它们在“对象检查器”窗格中混合在一起。

| h1保存h2应用h3还原h4重新加载h5退出h6 |

以上是我的GUI中的布局外观。垂直线仅代表窗口边界。 hx代表水平间隔。

Object Inspector  
    horizontalLayout_25  
        horizontalSpacer_241  (h2)  
        exitPB  
        revertPB  
        horizontalSpacer_242  (h3)  
        horizontalSpacer_243  (h5)  
        horizontalSpacer_275  (h6)  
        savePB  
        applyPB  
        horizontalSpacer_274  (h1)  
        reloadPB  
        horizontalSpacer_297  (h4)  

我想组织对象检查器,以便在窗口中水平显示窗口小部件时垂直列出它们。

horizontalLayout_25  
    horizontalSpacer_274  (h1)  
    savePB   
    horizontalSpacer_241  (h2)  
    applyPB  
    horizontalSpacer_242  (h3)  
    revertPB  
    horizontalSpacer_297  (h4)  
    reloadPB  
    horizontalSpacer_243  (h5)  
    exitPB  
    horizontalSpacer_275  (h6)  

有可能吗?我没有看到任何似乎适用的菜单选项,并且在搜索中没有找到任何内容。

谢谢。

0 个答案:

没有答案