摘要:
with tt as( select 'A' product, 100 price, '2021第1季度' time union all select 'A' product, 777 price, '2021第1季度' time union all select 'A' product, 111 阅读全文
摘要:
this.dataGridView1.BindingContext[this.dataGridView1.DataSource].Position = 5 阅读全文
摘要:
Win 键+R calc:计算器 notepad:记事本 mspaint:画图 cmd:控制台 control:控制面板 desk.cpl:打开控制面板中的桌面设置 main.cpl:鼠标设置 inetcpl.cpl:Internet 属性 ncpa.cpl:网络连接 sysdm.cpl:系统属性 阅读全文
摘要:
Alt+Tab:窗口切换 Alt+回车:查看所选文件属性 Win 键 + 数字:打开/最小化 任务栏对应程序 Win 键+Shift+Esc: 打开任务管理器 Win 键+ 空格:切换输入法 Win 键+ D: 最小化所有窗口,快速查看桌面,再按一次可以复原 Win 键+方向键:用过都知道,窗口动来 阅读全文
摘要:
function addScriptTag(src) { var script = document.createElement('script'); script.setAttribute("type","text/javascript"); script.src = src; document. 阅读全文
摘要:
public Image GetHttpImage(string url) { var client = new HttpClient(); var uri = new Uri(Uri.EscapeUriString(url)); byte[] urlContents = client.GetByt 阅读全文
摘要:
//设置左上角到中心点 g.TranslateTransform(int.Parse(x), int.Parse(y)); //旋转角度 g.RotateTransform(int.Parse("90")); //还原左上角 g.TranslateTransform(-int.Parse(x),- 阅读全文
摘要:
static void Main() { //设置应用程序处理异常方式:ThreadException处理 Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException); //处理UI线程异常 Applica 阅读全文
摘要:
nuget 安装 DataMatrix.net //示例 DmtxImageEncoder Die = new DmtxImageEncoder(); DataMatrix.net.DmtxImageEncoderOptions option = new DmtxImageEncoderOption 阅读全文
摘要:
public static class Ex{ public static T2 Map< T2>(this object t1) where T2 : class { var t1_Pinfos = t1.GetType().GetProperties(); var t2_Pinfos = typ 阅读全文