1 Star 0 Fork 0

loveyu/JiaowuHelper

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Browser.cs 929 Bytes
一键复制 编辑 原始数据 按行查看 历史
loveyu 提交于 2013-12-25 22:41 . Update first to 1.1.0
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Win32;
using System.Diagnostics;
using System.Windows.Forms;
namespace JiaowuHelper
{
class Browser
{
public static bool openAuthor = false;
public static string updateUrl = "http://www.loveyu.net/Update/JiaowuHelper.php";
public static void openUrl(string url) {
try
{
RegistryKey key = Registry.ClassesRoot.OpenSubKey(@"http\shell\open\command\");
string s = key.GetValue("").ToString().Split(' ')[0].Replace("\"","");
System.Diagnostics.Process.Start(s, url);
}
catch (Exception ex){
MessageBox.Show(ex.Message,"打开网址异常",MessageBoxButtons.OK,MessageBoxIcon.Error);
}
}
public static void openAuthorPage() {
openUrl("http://www.loveyu.org/?ref=jiaowuhelper");
openAuthor = false;
}
public static void openAppPage() {
openUrl("http://www.loveyu.net/JiaowuHelper");
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/iloveyulove/JiaowuHelper.git
git@gitee.com:iloveyulove/JiaowuHelper.git
iloveyulove
JiaowuHelper
JiaowuHelper
master

搜索帮助