获取从 url 发送到 wpf 的变量?
有人可以帮助我知道该怎么做吗? 我想知道如何将从 url 自定义协议发送到 WPF 的变量,而不是像 Internet 上的所有教程所示的命令行。 有如何将其进入命令行: http://msdn.microsoft.com/en- us/library/aa767914(v=vs.85).aspx
但是如何获取wpf中的args?
can somebody help me to know how to do it?
I want to know how to get the variables sent from url custom protocol into WPF, not command line as all tutorials on Internet show.
There are how to get it into command line:
http://msdn.microsoft.com/en-us/library/aa767914(v=vs.85).aspx
But how to get the args in wpf?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想获取命令行参数,并且不想创建自己的
Main()
(WPF 会为您生成一个),则可以使用Environment.GetCommandLineArgs()
。与
Main()
args
不同,从GetCommandLineArgs()
返回的数组包含可执行文件名作为其第一项。If you just want to get the command-line arguments, and you don't want to create your own
Main()
(WPF generates one for you), you can useEnvironment.GetCommandLineArgs()
.Unlike with
Main()
args
, the array returned fromGetCommandLineArgs()
contains the executable file name as its first item.