上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页
摘要: 在行样式中加入 <DataGrid.RowStyle> <Style TargetType="DataGridRow"> <EventSetter Event="MouseLeftButtonUp" Handler="Item_MouseUp"/> </Style> </DataGrid.RowSt 阅读全文
posted @ 2022-07-21 16:01 奇迹之耀 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 最开始一个个像素遍历,然后速度很慢,后发现了一种新方法Region.IsVisible GraphicsPath path = new GraphicsPath() { }; path.AddPolygon(new PointF[] {new PointF(100,100),new PointF(3 阅读全文
posted @ 2022-07-18 16:53 奇迹之耀 阅读(110) 评论(0) 推荐(0) 编辑
摘要: var wb = new WriteableBitmap(960, 720, 96, 96, PixelFormats.Bgra32, null); wb.Lock(); System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(960, 72 阅读全文
posted @ 2022-07-08 16:15 奇迹之耀 阅读(35) 评论(0) 推荐(0) 编辑
摘要: //获得JPEG格式的编码器 ImageCodecInfo myImageCodecInfo = GetEncoderInfo("image/jpeg"); //设置质量 数字越大质量越好,但是到了一定程度质量就不会增加了,MSDN上没有给范围,只说是32为非负整数 EncoderParameter 阅读全文
posted @ 2022-07-07 11:44 奇迹之耀 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 换电脑了,找了半天才找到这个设置 阅读全文
posted @ 2022-07-02 14:00 奇迹之耀 阅读(26) 评论(0) 推荐(0) 编辑
摘要: <ComboBoxItem Content="{DynamicResource All}" /> 等同于 ComboBoxItem item1 = new ComboBoxItem() item1.SetResourceReference(ComboBoxItem.ContentProperty, 阅读全文
posted @ 2022-06-17 14:55 奇迹之耀 阅读(281) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// /// </summary> /// <param name="mp4">视频路径</param> /// <param name="jpg">截取后图片保存路径</param> /// <param name="frames">截取哪一帧</param> pub 阅读全文
posted @ 2022-06-10 16:09 奇迹之耀 阅读(725) 评论(0) 推荐(0) 编辑
摘要: 在查看域名信息时发现,按网上解决方案发现是域名解析中添加了一段txt记录,删除后几分钟状态正常 还有域名未实名好像也会出现这个情况 阅读全文
posted @ 2022-04-21 15:04 奇迹之耀 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 已解决,参考Aspnetcore Webapi 解决发布以后每隔一段时间请求变缓慢 - codeIsArt - 博客园 (cnblogs.com) ASP.NET在IIS的启动优化设置 - 流星夜 - 博客园 (cnblogs.com) 6、升级服务器到windows server2012或更高,安 阅读全文
posted @ 2022-04-07 17:14 奇迹之耀 阅读(462) 评论(0) 推荐(0) 编辑
摘要: 首先网站要同时绑定http和https 然后在微软官网下载URL重写工具 URL Rewrite : The Official Microsoft IIS Site 然后在配置文件中填入以下内容,并改为自己需要跳转的url <system.webServer> <rewrite> <rules> < 阅读全文
posted @ 2022-04-07 11:38 奇迹之耀 阅读(67) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页