qt designer中这个工具叫什么?

What is this tool called in qt designer?

what is this tool called and how to make it using qt designer?it is commonly used in other softwares to resize width and height by pressing it.

它是一个分离器,或者用 Qt 的术语来说,QSplitter

您不能直接将它添加到 UI,因为对于 Designer 它充当布局管理器(即使它在技术上不是,因为它继承自 QFrame,所以它是一个小部件)。

您可以通过 select 将两个或多个被视为 兄弟 的小部件(它们是同一父项的子项,或所有 [=33= ...

注意:

  • 由于 QSplitter 是一个容器(类似于从 Widget Box 中拖出的布局),您还需要创建一个父布局(如果 none 存在)和将拆分器添加到该父布局;
  • QSplitter 只能添加基于 QWidget 的 类,因此 Designer 在向拆分器添加布局时会创建“不可见”的小部件,而这些小部件无法被 Designer 直接访问,因此如果您需要将多个小部件添加到拆分器的单个“页面”,通常最好将它们分组到由容器管理的布局中(基本的 QWidget 就足够了)并将 that 容器添加到拆分器;