C# WinForm
w13511069150
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C# WinForm 模拟HTTP请求,并解析
使用的是 Newtonsoft.Json.dll 请自行下载并引入,下面的简单的源码均来自网上。using Newtonsoft.Json.Linq;using System;using System.IO;using System.Linq;using System.Net;using System.Text; static void Main() { ...原创 2018-04-02 19:16:04 · 3699 阅读 · 0 评论 -
C# 实现自己重启自己
可以在关闭事件中调用 Application.Exit();System.Diagnostics.Process.Start(System.Reflection.Assembly.GetExecutingAssembly().Location); 原来好多软件实现更新后的重启,应该就是这样实现的。...原创 2018-04-13 15:04:24 · 4918 阅读 · 0 评论 -
C# Winform WebBrowser JS C# 相互调用
using System;using System.Windows.Forms;namespace WindowsFormsApp3{ [System.Runtime.InteropServices.ComVisibleAttribute(true)] public partial class Form1 : Form { public Form1...原创 2019-02-22 19:44:32 · 1941 阅读 · 0 评论
分享