核心代码: RegistryKeyregistry=Registry.CurrentUser.OpenSubKey(Software\\Microsoft\\Windows\\CurrentVersion\\InternetSettings,true);registry.SetValue(ProxyEnable,1);//1启用0停用registry.SetValue(ProxyServer,127.0.0.1:9999);//指定代理...
#endregion#region数据转换结构///summary///转换数据结构////summarypublicstructMetadataDetail{publicstringHex;//十六进制字符串publicstringRawValueAsString;//原始值串publicstringDisplayValue;//显示值串}#endregion#reg...
使用方法:TextBoxAutoComplete(textBox_xxx,newstring[]{url,xx});///summary///textbox自动填充////summary///paramname=tb/param///paramname=list/parampublicstaticvoidTextBoxAutoComplete(TextBoxtb,string[]list){try{varsource=newAutoComple...
C#使窗体不显示在任务栏 this.ShowInTaskbar = false;//不显示在任务栏...
textbox自带就有填充功能就不多介绍了。 richTextBox文本框功能很齐全但是没有自动填充,就有点麻烦。 fastColoredTextBox也是一个很不错的编辑框,有PHP、SQL等等关键字上色 折叠功能。 项目...
#region得到光标在屏幕上的位置[DllImport(user32)]publicstaticexternboolGetCaretPos(outPointlpPoint);[DllImport(user32.dll)]privatestaticexternIntPtrGetForegroundWindow();[DllImport(user32.dll)]privatestaticexternIntPtrGetFocus();[...
需要初始化路径:OpenFileDialog初始路径 openFileDlg.InitialDirectory = Application.StartupPath; 如果还是不能解决无响应 最好使用线程中启动窗体。 线程中启动窗体 http://www.apizl.com/archives/view-13394...
Threadth=newSystem.Threading.Thread((System.Threading.ThreadStart)delegate{Application.Run(newFormPHPMore.pDataManage());});th.SetApartmentState(ApartmentState.STA);th.IsBackground=true;th.Start();...
WinForm:intWidth=Screen.PrimaryScreen.Bounds.Width;intHeight=Screen.PrimaryScreen.Bounds.Height;WPF下的:doubledWidth=System.Windows.SystemParameters.PrimaryScreenWidth;doubledHeight=System.Windows.SystemParameters.PrimaryScreenHeight;...
newSystem.Threading.Thread((System.Threading.ThreadStart)delegate{Application.Run(newFormPHPMore.pDataManage());}).Start();...