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.
我是 WPF 新手,从来没有需要在 WPF 中创建向导。我想知道使用什么控件在 WPF 中创建一个简单的向导,我可以收集每个页面上的信息并在最后一页(步骤)中完成操作。我实际上想使用本机 WPF 控件来实现它。我不知道,比如使用页面导航等等。任何原生 wpf 的想法?
您可以使用 Tab Control 来制作向导。
为了移动到特定索引上的下一个屏幕,可以将选项卡控件的 SelectedIndex 属性绑定到视图模型中的属性,如果您不希望在 UI 中显示选项卡项目,可以将其高度设置为 0。
查看 WPF 扩展工具包。它有一个内置的向导控件。
向导