随笔分类 - 其他相关技术
其他相关技术
摘要:github pages官方资料限制空间最大1G 但是目前我的空间已经突破5G 也没看到有任何限制的趋势。】 目前编译一次就是比较慢,大概需要50分钟了。
阅读全文
摘要:面向切面编程(AOP) AOP(Aspect-Oriented Programming,面向方面编程),可以说是OOP(Object-Oriented Programing,面向对象编程)的补充和完善。OOP引入封装、继承和多态性等概念来建立一种对象层次结构,用以模拟公共行为的一个集合。当我们需要为
阅读全文
摘要:常见软件系统缩略表 BPM(Business Process Management):业务流程管理 也称做商业流程管理。一套达成企业各种业务环节整合的全面管理模式。其中的Business并不局限于商业,它泛指各种组织中的活动:从商业企业到政府机构、非营利团体等等,因此,普遍共识是对应于更加中性的“业
阅读全文
摘要:Ubuntu(22.04tested) Qt常见错误以及解决方案 ERROR: Cannot run compiler ‘clang++ udo apt-get install clang; Error while building/deploying project test sudo apt-g
阅读全文
摘要:如何在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
阅读全文
摘要:System.Windows.Forms.TableLayoutPanel layoutPanel = new TableLayoutPanel(); layoutPanel.RowCount = 10; layoutPanel.ColumnCount = 5; layoutPanel.Width
阅读全文
摘要:Aliyun mirrors 阿里软件源 sudo zypper ar -fc https://mirrors.aliyun.com/opensuse/distribution/leap/15.4/repo/oss openSUSE-Aliyun-OSS sudo zypper ar -fc htt
阅读全文
摘要:130句美国谚语 1、Children should be seen but not be heard. 大人说话,小孩别插嘴。 2、If a man once fall, all will tread on him. 人倒众人踩。 3、Fool's haste is no speed. 欲速则不达
阅读全文
摘要:例:加载服务地址"http://services.arcgisonline.com/ArcGIS/services"中的"ESRI_Imagery_World_2D"数据对象(图层)到地图上。 private void GetServerTest() { //获得服务对象名称 IAGSServerO
阅读全文
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TeatApp_Crypto { using System; using System.Security.C
阅读全文
摘要:public class Startup { [STAThread] public static void Main(string[] args) { SingleInstanceApplicationWrapper wrapper = new SingleInstanceApplicationWr
阅读全文
摘要:// Get the XAML content from an external file. DependencyObject rootElement; using (FileStream fs = new FileStream(xamlFile, FileMode.Open)) { rootEle
阅读全文