获取从 url 发送到 wpf 的变量?

发布于 2024-12-16 12:13:35 字数 273 浏览 0 评论 0原文

有人可以帮助我知道该怎么做吗? 我想知道如何将从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

書生途 2024-12-23 12:13:35

如果您只想获取命令行参数,并且不想创建自己的 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 use Environment.GetCommandLineArgs().

Unlike with Main() args, the array returned from GetCommandLineArgs() contains the executable file name as its first item.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文