提交当前本机整理版本

This commit is contained in:
cyf
2026-07-02 10:11:39 +00:00
parent c10a5d64c7
commit aacefa24f8
822 changed files with 196665 additions and 14263 deletions
+35 -1
View File
@@ -227,4 +227,38 @@ namespace Lskj.Main
// for (int i = 30; i < this.Height - 40; i=i+200)
// {
// for (int j = 40; j < this.Width - 40; j = j + 250)
// {
// graphicsText.DrawString(content, new Font("宋体", 15, FontStyle.Bold), brush, new PointF(j,i), format, -30f);
// }
// }
// e.Graphics.TranslateTransform(x, y);
// e.Graphics.RotateTransform(-20f);
//}
e.Graphics.ResetTransform();
}
catch (Exception ex)
{
string Message = ErrorMessage.PromptErrorMessage(ex);
//MessageUtil.Show(Message, ex.Message);
}
}
/// <summary>
/// 鼠标穿透水印操作下方
/// </summary>
protected override CreateParams CreateParams
{
get
{
CreateParams cp = base.CreateParams;
cp.ExStyle |= 0x00000020; // 设置 WS_EX_TRANSPARENT 样式
return cp;
}
}
}
}