winform 计算器,显示区,数字区放大缩小布局

原始大小

放大后

 

panel1 dock 属性值 top

 

 panel2 dock 属性值 fill

代码

  public partial class Form1 : Form
    {
        int normalWidth = 0;  //窗体默认宽高
        int normalHeight = 0; //记录控件的位置
        Dictionary<string, Rectangle> normalControls = new Dictionary<string, Rectangle>();
        public Form1()
        {
            InitializeComponent();
            this.Load+=Form1_Load;
            this.SizeChanged+=Form1_SizeChanged;
        }
        private void Form1_SizeChanged(object sender, EventArgs e)
        {
            foreach (Control item in panel2.Controls)
            {
                int w = this.panel2.Width;
                int h = this.panel2.Height;
            int newX = (int)(w * 1.0 / normalWidth * normalControls[item.Name].X);
            int newY = (int)(h * 1.0 / normalHeight * normalControls[item.Name].Y);
            int newW = (int)(w * 1.0 / normalWidth * normalControls[item.Name].Width);
            int newH = (int)(h * 1.0 / normalHeight * normalControls[item.Name].Height);
            item.Left = newX;
            item.Top = newY;
            item.Width = newW;
            item.Height = newH;
            }
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            normalWidth = this.panel2.Width;
            normalHeight = this.panel2.Height;
            foreach (Control item in panel2.Controls)
            {
                normalControls.Add(item.Name, new Rectangle(item.Left, item.Top, item.Width, item.Height)); 
            }
        }
    }

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值