创建一个简单的多选项卡表单

发布于 2025-01-05 22:18:02 字数 229 浏览 1 评论 0原文

系统属性 我需要这样的东西,图像列出了几个选项卡,每个选项卡单击后都会带您进入窗口中各自的形式,我只需要类似这样的外观和感觉。 但我需要将选项卡垂直堆叠,而不是水平堆叠。我只需要 3 个不同选项卡中的 3 个多个表单。我想要基本的外观和感觉,就像右键单击我的电脑属性时的系统属性窗口。

System Properties
I need something like this, the image list several tabs each when clicked takes you to its respective form within the window, I just need the look and feel of something like this.
But instead of stacking tabs horizontally I need them stacked up vertically. I just need 3 multiple forms in 3 different tabs. I want the basic look and feel like the System Properties window when you right click My ComputerProperties.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ゝ杯具 2025-01-12 22:18:02

TabControl 有一个名为“Alignment”的属性,具有四个可能的枚举值(上、左、右、下)。默认情况下,该值设置为“顶部”,但如果将其设置为“左侧”,选项卡将显示在 TabControl 的左侧。

YourTabControl.Alignment = TabAlignment.Left;

The TabControl has a property called 'Alignment' with four possible enum-values (Top, Left, Right, Bottom). By default the value is set to Top but if you set it to Left, the tabs will appear on the left side of the TabControl.

YourTabControl.Alignment = TabAlignment.Left;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文