如何维护 WPF 应用程序中打开的选项卡之间的关系
我们有一个 wpf 应用程序..在主页中我们有工作、帮助、批准 搜索选项卡.. 当用户单击“批准”选项卡并选择学生时...如果学生是 不合格则启用 ApproveStudent 选项,当单击 StudentApprove 时 屏幕在新选项卡中打开,用户可以在那里批准学生。
在 StudentApprove 屏幕中,有 Approve 和 Disqualify 按钮,因此当他们 单击批准 学生获得批准 一旦获得批准 StudentApprove 屏幕应该关闭并返回到他来自的屏幕,即 ApproveStudent 屏幕
这就像
Work,Approve,Search, Help
这些下的功能区栏..当他们选择任何选项时..在这些新选项卡打开时,假设搜索有 3 个选项..
当选择 Approve ..显示学生列表...当单击任何学生时,会打开另一个屏幕...当他们单击“批准”按钮时..应关闭此选项卡并返回“批准”屏幕
we have a wpf application..in the Home page we have Work,Help,Approve
Search tabs..
When user clicks on the Approve tab and selects a student..if student is
not qualified then ApproveStudent option is enabled,when clicks StudentApprove
screen opens in a newtab and there the user can approve the student.
In the StudentApprove screen there Approve and Disqualify buttons, so when they
click the approve the student is approved once he is approved the StudentApprove
screen should close and take back to the screen from which he come i.e ApproveStudent screen
This is like Ribbonbar
Work,Approve,Search, Help
under these ..when they select any option..under these new tab opens, let say search has 3 options..
when selects Approve ..students list is displayed....when clicked on any student another screen is opened...when they click Approve button ..this tab should be closed and take back to Approve screen
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将使用
ItemsList
并指定何时导出视图。
如果顺序很重要,为什么还需要
TabContainer
?I would use
ItemsList
and specifywhen you export your views.
Why do you need
TabContainer
if order is important?