提交当前本机整理版本
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user