随笔分类 -  c#/.net

摘要:public Form1() { InitializeComponent(); //运行隐藏 //this.WindowState = FormWindowState.Minimized; //this.ShowInTaskbar = false; //SetVisibleCore(false); 阅读全文
posted @ 2020-10-15 19:28 晨光静默 阅读(139) 评论(0) 推荐(0) 编辑
摘要:static void Main() { #if false Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); / 阅读全文
posted @ 2020-10-15 19:26 晨光静默 阅读(124) 评论(0) 推荐(0) 编辑
摘要:bool WriteTxtFile(string filename, string content) { bool bRet = false; FileStream fs = null; StreamWriter sw = null; try { FileInfo fi = new FileInfo 阅读全文
posted @ 2020-10-15 19:07 晨光静默 阅读(107) 评论(0) 推荐(0) 编辑
摘要:c#版本: private bool SetAutoRun(bool onFlag) { bool bRet = true; try { string path = Application.ExecutablePath; RegistryKey rk = Registry.LocalMachine; 阅读全文
posted @ 2020-10-15 17:23 晨光静默 阅读(135) 评论(0) 推荐(0) 编辑
摘要:protected override void WndProc(ref Message m) { const int WM_SYSCOMMAND = 0x0112; const int SC_CLOSE = 0xF060; if (m.Msg == WM_SYSCOMMAND && (int)m.W 阅读全文
posted @ 2020-08-24 09:59 晨光静默 阅读(488) 评论(0) 推荐(0) 编辑
摘要:public partial class frmYbCheckIn : Form { string[] args = null; public frmYbCheckIn() { InitializeComponent(); } public frmYbCheckIn(string[] args) { 阅读全文
posted @ 2020-08-24 09:42 晨光静默 阅读(220) 评论(0) 推荐(0) 编辑
摘要:// 第一步:定义委托类型 // 将text更新的界面控件的委托类型 delegate void SetTextCallback(string text); //第二步:定义线程的主体方法 /// <summary> /// 线程的主体方法 /// </summary> private void T 阅读全文
posted @ 2020-08-24 09:17 晨光静默 阅读(369) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示