• C# Winform开发以及控件开发的需要注意的,被人问怕了

    我是搞控件开发的,经常被人问,所以把一些问题记录了下来!如果有人再问,直接把地址丢给他看。 一、 经常会有人抱怨Winform界面闪烁,下面有几个方法可以尽可能的避免出现闪烁 1. 控件的使用尽量以纯色为主, 尽量不使用背景图,或者把大图改成小图,或者图片不缩放...

    2018-06-17 22:43:15

  • c# 项目之间循环引用vs弹窗提醒

    circular dependencies in projects' graph ! Projects in cycle are:ProjectImp(Name:FrameWork.Entity,PlatformId:'.NETFramework,Version=v4.6') ProjectlImpl(Name :FrameWork.Interface, PlatformId: '.NET Framework,Versio=v4.6') 报这种错误就是循环引用的问题...

    2018-06-17 22:43:12

  • C# 输出字符串到文本文件中

    写个博客记录下,方便以后使用: public class WriteHelper { public static void WriteFile( object data) { try { string path = $ @" D:\TokenLog\day{DateTime.Now:yyyy-MM-dd} " ; var filename = $ " TokenLog{DateTime.Now:yyyy-MM-dd HH}.txt " ; if (! Direct...

    2018-06-17 22:43:09

  • 解决在C#(.net)按字节数截取字符串最后出现乱码的问

    最近需要用到按字节数截取字符串。在网上找了很多方法。 Encoding.Default.GetString采用的Default Encoding.UTF8.GetBytes采用的是utf-8编码。这样当然是乱码。尤其出现中文时候。 对这类数据处理当然要用统一的编码来处理。 例子:1 string msg= Encoding.UTF8.GetSt...

    2018-06-17 22:43:11

  • 匿名对象解析

    class Program { static void Main(string[] args) { Listobject obj = new Listobject(); obj.Add(new { aa=1,bb=1}); obj.Add(new { aa = 1, bb = 2 }); var objs = obj.Select(t = t.Cast(new { aa = 0, bb = 0 })).ToList(); Console.ReadKey(); } } static class...

    2018-06-17 22:43:00

  • .net自定义错误页面实现

    前言: 在实际的web开发中,经常会遇到以下情况,导致给用不好的体验: a、程序未处理的异常,直接输出显示到用户页面 b、用户访问的资源不存在,直接显示系统默认的404页面 c、其它以下请求错误状态的系统默认页面(403等) 为了给用户友好的体验,在实际项目开发中,...

    2018-06-17 22:43:06

  • 事件管理

    using System; using System.Collections.Generic; namespace CustomUtils{ /// summary /// 事件管理器 /// /summary public class EventManager { private readonly static Dictionary string , ActionEventMessageArgs eventTask = new Dictionary string , ActionE...

    2018-06-17 22:43:03

  • 腾讯云图片鉴黄集成到C#

    官方文档:https://cloud.tencent.com/document/product/641/12422 请求官方API及签名的生成代码如下: var urlList = new List string (); urlList.Add(url); // 请求参数 var req = new { appid = ConfigurationManager.AppSettings[ " AppId " ], url_list = urlLis...

    2018-06-17 22:42:57

  • FastReport.Net

    using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using FastReport;using FastReport.Data;using FastReport.Editor;using FastReport.Design;usin...

    2018-06-17 22:42:54

  • .net 公共基础类

    using WL.Infrastructure.Http;using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Text.RegularExpressions;using System.Web;using System.Drawing;using System.Drawing.Imaging;using System.Drawi...

    2018-06-17 22:42:55

2