Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含UltraGroupBox的 Windows 窗体。
如何使 UltraGroupBox 上的文本居中?
现在它看起来像这样:
' 将标题置于正在绘制的标题区域的中心。' 如果你想完全移动标题的位置,' 使用 CaptionAlignment 属性。Me.UltraGroupBox1.HeaderAppearance.TextHAlign = HAlign.Center
编辑
看来您可以使用该CaptionAlignment物业
CaptionAlignment
文档可以在这里找到
this.ultraGroupBox1.CaptionAlignment = GroupBoxCaptionAlignment.Center;