WPF - 页面上的查询字符串参数
我对 WPF 非常陌生,有一个看似简单的问题:
我有一个框架,并将源设置为我的其中一个页面的 Uri。 我想将一些查询字符串参数传递到页面,但我不确定如何在页面的 Loaded 事件中访问它们。
I am very new to WPF and have what appears to be a simple question:
I have a Frame and I set the Source to the Uri of one of my pages. I want to pass some query string parameters to the page, but I am not sure how to access them in the Loaded event of the Page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
找到了:
NavigationService.CurrentSource 将为您提供当前所在页面的 Uri,您可以从中获取查询字符串参数。
Found it:
NavigationService.CurrentSource will give you the Uri of the current page that you are on and you can grab the query string parameters from that.
您应该查看这个相关的 StackOverflow 问题:
通过其 Uri 将参数传递到 WPF 页面
< a href="https://stackoverflow.com/questions/1351546/passing-parameters-to-a-wpf-page-via-its-uri/1544558#1544558">Paul Stovell的回答解释了一种更好的方法用于传递数据而不是使用查询字符串。
You should check out this related StackOverflow question:
Passing parameters to a WPF Page via its Uri
Paul Stovell's answer explains a better approach for passing data than using a query string.