07 2022 档案
摘要:在行样式中加入 <DataGrid.RowStyle> <Style TargetType="DataGridRow"> <EventSetter Event="MouseLeftButtonUp" Handler="Item_MouseUp"/> </Style> </DataGrid.RowSt
阅读全文
摘要:最开始一个个像素遍历,然后速度很慢,后发现了一种新方法Region.IsVisible GraphicsPath path = new GraphicsPath() { }; path.AddPolygon(new PointF[] {new PointF(100,100),new PointF(3
阅读全文
摘要:var wb = new WriteableBitmap(960, 720, 96, 96, PixelFormats.Bgra32, null); wb.Lock(); System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(960, 72
阅读全文
摘要://获得JPEG格式的编码器 ImageCodecInfo myImageCodecInfo = GetEncoderInfo("image/jpeg"); //设置质量 数字越大质量越好,但是到了一定程度质量就不会增加了,MSDN上没有给范围,只说是32为非负整数 EncoderParameter
阅读全文