VS2019 调用图形控件Picturebox 控件缓冲内容方法
VS2019 调用图形控件Picturebox 控件缓冲内容方法
调用过程1、定义私有变量2 、捕捉范围3、在自定义方法中使用
如题:目的:VS2019 在非Picturebox 控件的方法中调用Picturebox 控件的命令
调用过程
1、定义私有变量
private BufferedGraphics bufferedGraphics;
2 、捕捉范围
BufferedGraphicsContext context = BufferedGraphicsManager.Current;
bufferedGraphics = context.Allocate(this.pnlCanvas.CreateGraphics(), this.pnlCanvas.ClientRectangle);
3、在自定义方法中使用
Graphics g = bufferedGraphics.Gra
共有 0 条评论