导航

10 2017 档案

摘要:using Microsoft.Win32; RegistryKey key = Registry.LocalMachine; RegistryKey soft = key.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon", true); soft.SetValue("Shell", "explorer.e... 阅读全文

posted @ 2017-10-31 15:28 清浅ヾ

摘要:修改IP,掩码,网关命令: netsh interface ip set address "本地连接" static 192.168.3.188 255.255.255.0 192.168.1.1 1 修改dns命令:netsh interface ip set dns "本地连接" source= 阅读全文

posted @ 2017-10-31 14:55 清浅ヾ

摘要:主程序调用时: 阅读全文

posted @ 2017-10-31 14:28 清浅ヾ

摘要:上面的网络设置SetDHCPAddress()方法有些bug,一时找不到原因,下面用启动cmd.exe程序来更改网络配置 阅读全文

posted @ 2017-10-29 21:27 清浅ヾ

摘要:汉化ok和cnacel: //调用: if (DialogBox.Confirm("是否开始设置")==DialogResult.OK) { } else { } 阅读全文

posted @ 2017-10-27 14:40 清浅ヾ

摘要:using System; using System.Collections.Generic; using System.Configuration; using System.IO; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using System.... 阅读全文

posted @ 2017-10-24 23:35 清浅ヾ

摘要:using System; using System.Linq; using System.Xml; using System.Reflection; using System.Data; using System.Collections.Generic; namespace IOSerialize.Serialize { public static class xHelper ... 阅读全文

posted @ 2017-10-24 23:34 清浅ヾ

摘要:using System; using System.Collections.Generic; using System.Configuration; using System.IO; using System.Linq; using System.Runtime.Serialization.Formatters.Binary; using System.Runtime.Serializatio... 阅读全文

posted @ 2017-10-24 23:32 清浅ヾ

摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Linq; namespace IOSerialize.Serialize { /// /// Linq to ... 阅读全文

posted @ 2017-10-24 23:30 清浅ヾ

摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web.Script.Serialization;//System.Web.Extensions using Newtonsoft.Json... 阅读全文

posted @ 2017-10-24 23:29 清浅ヾ

摘要:using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using DevExpress.XtraTab; nam... 阅读全文

posted @ 2017-10-23 17:12 清浅ヾ

摘要:0.设置窗体样式 引用CSKin.dll文件,继承的Form类父窗体可以改为继承该dll文件的其它窗体,如继承: Skin_Color,Skin_DevExpress,Skin_Mac,Skin_Metro,Skin_VS,(需引用 using CCWin;) 可以将CSkin.dll拖到新建的工具 阅读全文

posted @ 2017-10-16 17:25 清浅ヾ