摘要:
如何在C#中运行数学表达式字符串 方法1:利用DataTable中的Compute方法 1 string expression = "1+2*3"; 2 DataTable eval = new DataTable();object result = eval.Compute(expression, 阅读全文
摘要:
概述:网上比较多讲述如何操作Excel表的文章,但都是启动Excel的窗口来打开Excel数据文件。有时候需要把Excel表嵌入到自己程序的Form中,给客户一个不用切换窗口的操作界面,似乎更好。这在VC中用OLE技术很容易实现,但是在C#中方法就不一样啦。下面将就此进行阐述。 网上比较多讲述如何操 阅读全文
摘要:
static void Main(string[] args) { //Console.BackgroundColor = ConsoleColor.Blue; //设置背景色 Console.ForegroundColor = ConsoleColor.White; //设置前景色,即字体颜色 C 阅读全文
摘要:
C# 无边框窗体移动和改变大小的实现 转载▼ 自己给软件做的皮肤,将窗体设为无边框后,想要其具有正常窗体的移动和改变大小功能,以下代 码可以实现。。。。 //需添加using System.Runtime.InteropServices; [DllImport("user32.dll")] publ 阅读全文
摘要:
//c# 获取屏幕 Graphics System.IntPtr DesktopHandle = GetDC(System.IntPtr.Zero); Graphics g = Graphics.FromHdc(DesktopHandle); //Graphic g.DrawString 绘制文本 阅读全文
摘要:
[DllImport("user32.dll",CharSet = CharSet.Auto)] public static extern IntPtr SendMessage(IntPtr hWnd, int msg, int wParam, int lParam); private int LV 阅读全文
摘要:
Visual Studio 远程调试 Remote Debugger vs 安装目录下D:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\Remote Debugger 在服务器端启动 Remote Debugger 里边有 阅读全文
摘要:
调整.NET控件WebBrowser的默认浏览器内核版本 1、在开始菜单内输入“regedit.exe”,进入注册表编辑器 2、找到注册表项:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\MAIN\FeatureControl\FEA 阅读全文