C#画图超出屏幕的部分无法显示的解决方法


C#画图超出屏幕的部分无法显示,通过AutoScrollMinSize属性及相关方法解决问题。

可以实现

 

 到

 

 的转变。

代码如下:

using System.Drawing;
using System.Windows.Forms;

namespace drawing_test
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            this.AutoScrollMinSize = new Size(250, 350);//解决问题需添加
        }

        private Point rectangleTopLeft = new Point(0, 0);
        private Size rectangleSize = new Size(200, 200);
        private Point ellipseTopLeft = new Point(50, 200);
        private Size ellipseSize = new Size(200, 150);
        private Pen bluePen = new Pen(Color.Blue, 3);
        private Pen redPen = new Pen(Color.Red, 2);

        private void OnPaint(object sender, PaintEventArgs e)
        {
            Graphics dc = e.Graphics;
            Size scrollOffset = new Size(this.AutoScrollPosition);//解决问题需添加

            Rectangle rectangleArea = new Rectangle(rectangleTopLeft + scrollOffset, rectangleSize);//解决问题需修改
            Rectangle ellipseArea = new Rectangle(ellipseTopLeft + scrollOffset, ellipseSize);//解决问题需修改

            dc.DrawRectangle(bluePen, rectangleArea);
            dc.DrawEllipse(redPen, ellipseArea);
        }
    }
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM