- 积分
- 269
- 阳光
-
- 花瓣
-
- 雨露
-
- 节操
-
- 基情
-
- 贡献
-
- 注册时间
- 2014-7-9
- 在线时间
- 小时
- 最后登录
- 1970-1-1
- 阅读权限
- 30
TA的每日心情 | 擦汗 2016-7-22 16:13 |
---|
签到天数: 15 天 [LV.4]偶尔看看III
|
http://www.oabird.com/update/20141106.rar
木鱼大大,这是我从你的最近的 版本: 3.0.14290.0 源代码改版而来的哦,最新的没有源码
改后的源码在链接里了。
调用方式是
private void Form1_Load(object sender, EventArgs e)
{
string updatePath = Application.StartupPath + "\\SimpleUpdater.dll";
if (File.Exists(updatePath))
{
Assembly ass = Assembly.LoadFile(updatePath);
Type type = ass.GetType(string.Format("{0}.{1}", "FSLib.App.SimpleUpdater", "Updater"));
MethodInfo md = type.GetMethod("CheckUpdateSimple", new Type[] { typeof(IWin32Window), typeof(string), typeof(string) });
md.Invoke(null, new object[] { this, "http://192.168.0.1/WindowsFormsApplication1/{0}", "update_c.xml" });
}
}
可以不用找程序属性了。
麻烦木鱼大大找找看这个版本的BUG 谢谢
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?入住
x
|