代码技巧
锐视创想
www.joynop.com
展开
-
cnpm : 无法加载文件 node_global\cnpm.ps1,因为在此系统上禁止运行脚本
cnpm : 无法加载文件 D:\nodejs\node_global\cnpm.ps1,因为在此系统上禁止运行脚本cnpm : 无法加载文件 D:\nodejs\node_global\cnpm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com /fwlink/?LinkID=135170 中的 about_Execution_Poli...原创 2020-02-25 14:30:17 · 37434 阅读 · 40 评论 -
C#中如何调整图像大小
1.首先要获取你想要调整大小的图像:string path = Server.MapPath(“~/Images”); System.Drawing.Image img = System.Drawing.Image.FromFile(string.Concat(path,”/3904.jpg”)); 2.将图像转换为Bitmap:Bitmap b = new Bitmap(img); ...转载 2018-06-19 20:58:06 · 2646 阅读 · 0 评论 -
获取DPI
#region 获取DPI public static float getLogPiex() { float returnValue = 96; try { RegistryKey key = Registry.CurrentUser; RegistryKey pixeKey = ke...原创 2018-06-20 15:17:12 · 1213 阅读 · 0 评论 -
采用NanUI-ChromiumFX 前后端调用
windows调用前端 private void timer1_Tick(object sender, EventArgs e) { Chromium.ExecuteJavascript("Comprefresh()"); }前端调用Winform//正常窗口GlobalObject.AddFunction...原创 2018-07-04 16:29:24 · 2460 阅读 · 0 评论 -
C# winform窗口居中
//不知道啥问题FormStartPosition.CenterScreen不好使,根据屏幕来设定了 int height = System.Windows.Forms.SystemInformation.WorkingArea.Height; int width = System.Windows.Forms.SystemInformation.W...原创 2018-07-04 16:33:56 · 6041 阅读 · 0 评论 -
C# winform 禁止中文输入
看一下控件的ImeMode属性是否被设为Disable,如果是,设为NoControl或者On试下Enable IME for the controlmeMode已经是NoControl了 改成On后是可以输入了 但默认是全角的TextBox.IMEMode 属性 (访问)语法 表达式。IMEMode 表达式_一个表示文本框对象的变量。 注解 IMEMode属性使用以下设置...原创 2018-07-04 16:43:32 · 1811 阅读 · 0 评论