C#控件(包括字体)随窗体大小自动调整 已解决未将对象引用设置到对象的实例

在CSDN里找到一个屏幕自适应程序,但是string[] mytag = con.Tag.ToString().Split(new char[] { ‘:’ });在VS2015上运行正常,在VS2017、19运行会报错:未将对象引用设置到对象的实例,打断点发现con.Tag一直为null,然后判断出启动后先运行的是Resize,后运行Load所以才出现了这个问题,所以我加了个bool用来判断,使其先运行Load再运行Resize,终于成功实现出屏幕自适应,编程小白自己的理解,这也是我第一次发文章,说的不对的地方还请大佬指正。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication2
{
    public partial class Form4 : Form
    {
        public Form4()
        {
            InitializeComponent();
        }
        private float x;//定义当前窗体的宽度
        private float y;//定义当前窗体的高度
        private bool a = false;

        private void Form4_Load(object sender, EventArgs e)
        {
            a = true;
            x = this.Width;
            y = this.Height;
            setTag(this);
        }
        private void setTag(Control cons)
        {
            foreach (Control con in cons.Controls)
            {
                con.Tag = con.Width + ";" + con.Height + ";" + con.Left + ";" + con.Top + ";" + con.Font.Size;
                if (con.Controls.Count > 0)
                {
                    setTag(con);
                }
            }
        }
        private void setControls(float newx, float newy, Control cons)
        {
            //遍历窗体中的控件,重新设置控件的值
            foreach (Control con in cons.Controls)
            {
                //获取控件的Tag属性值,并分割后存储字符串数组
                string[] mytag = con.Tag.ToString().Split(new char[] { ';' });
                //根据窗体缩放的比例确定控件的值,宽度
                con.Width = Convert.ToInt32(System.Convert.ToSingle(mytag[0]) * newx);
                con.Height = Convert.ToInt32(System.Convert.ToSingle(mytag[1]) * newy);//高度
                con.Left = Convert.ToInt32(System.Convert.ToSingle(mytag[2]) * newx);//左边距
                con.Top = Convert.ToInt32(System.Convert.ToSingle(mytag[3]) * newy);//顶边距
                Single currentSize = System.Convert.ToSingle(mytag[4]) * newy;//字体大小
                con.Font = new Font(con.Font.Name, currentSize, con.Font.Style, con.Font.Unit);
                if (con.Controls.Count > 0)
                {
                    setControls(newx, newy, con);
                }

            }
        }

        private void Form4_Resize(object sender, EventArgs e)
        {
            if(a==true)
            {
                float newx = (this.Width) / x;
                float newy = (this.Height) / y;
                setControls(newx, newy, this);
            }
            
        }
    }
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值