通用網頁調用本地應用程式方案(windows平台)

來源:互聯網
上載者:User

標籤:sum   add   let   字元   本地   static   visual   代碼   ref   

一、更新註冊表
Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\receiveOutOfArg]"URL Protocol"="D:\\LongHaibin\\Learn\\Net\\receiveOutOfArg\\receiveOutOfArg\\bin\\Debug\\receiveOutOfArg.exe"@="applicationName"[HKEY_CLASSES_ROOT\receiveOutOfArg\DefaultIcon]@="D:\\LongHaibin\\Learn\\Net\\receiveOutOfArg\\receiveOutOfArg\\bin\\Debug\\receiveOutOfArg.exe,1"[HKEY_CLASSES_ROOT\receiveOutOfArg\shell][HKEY_CLASSES_ROOT\receiveOutOfArg\shell\open][HKEY_CLASSES_ROOT\receiveOutOfArg13:14 2017/5/11\shell\open\command]@="\"D:\\LongHaibin\\Learn\\Net\\receiveOutOfArg\\receiveOutOfArg\\bin\\Debug\\receiveOutOfArg.exe\" \"%1\""

說明:

  • applicationName:表示網頁開啟時提示的名稱
  • "%1":表示要傳遞的參數,只是%1,\":表示的是逸出字元
二、建立一個應用

以下是c#應用程式的代碼: 入口位置:

static class Program{    /// <summary>    /// 應用程式的主進入點。    /// </summary>    [STAThread]    static void Main(string[] args)    {        Application.EnableVisualStyles();        Application.SetCompatibleTextRenderingDefault(false);        Application.Run(new Form1(args));    }}

表單代碼:

public partial class Form1 : Form{    private string[] args;    public Form1(string[] args)    {        this.args = args;        InitializeComponent();    }    private void Form1_Load(object sender, EventArgs e)    {        this.label1.Text = string.Join(",", this.args);    }}
三、建立一個網頁

網頁用a標籤調用即可:

<a href="receiveOutOfArg://abc">open</a>

通用網頁調用本地應用程式方案(windows平台)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.