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.
当我单击选项卡标题时,我在 TabControl 中有可以正常加载的区域,但是当页面最初加载时我无法设置默认视图。
例如:如果我有 3 个标签,我希望默认加载第一个。最简单的方法是什么?
在构造函数中 InitializeComponent() 之后
TabControl.SelectedItem = TabControl.Items[0];
虽然没有测试