• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C#窗体最大化最小化等比例缩放

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

不废话,直接代码

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

/// <summary>
/// 20200620 likewei for the windows maxsize
/// </summary>
namespace WindowsFormsApp1
{
    public class WindowZoom
    {

        private float x;//当前窗体的宽度
        private float y;//当前窗体的高度

        public void SetForm(Control form)
        {
            x = form.Width;           
            y = form.Height;
            SetTag(form);
        }

        public void SetReSize(Control form)
        {
            float reSizeX = (form.Width) / x;
            float reSizeY = (form.Height) / y;

            SetControls(reSizeX, reSizeY, form);
        }

        private void SetTag(Control controls)
        {
            foreach (Control ctr in controls.Controls)
            {
                ctr.Tag = ctr.Width + ";" + ctr.Height + ";" + ctr.Left + ";" + ctr.Top + ";" + ctr.Font.Size;
                if (ctr.Controls.Count > 0)
                {
                    SetTag(ctr);
                }
            }
        }

        private void SetControls(float reSizeX, float reSizeY, Control controls)
        {
            //遍历窗体中的控件,重新设置控件的值
            foreach (Control ctr in controls.Controls)
            {
                //获取控件的Tag属性值,并分割后存储字符串数组
                if (ctr.Tag != null)
                {
                    string[] mytag = ctr.Tag.ToString().Split(new char[] { ';' });
                    //根据窗体缩放的比例确定控件的值
                    ctr.Width = Convert.ToInt32(System.Convert.ToSingle(mytag[0]) * reSizeX);//宽度
                    ctr.Height = Convert.ToInt32(System.Convert.ToSingle(mytag[1]) * reSizeY);//高度
                    ctr.Left = Convert.ToInt32(System.Convert.ToSingle(mytag[2]) * reSizeX);//左边距
                    ctr.Top = Convert.ToInt32(System.Convert.ToSingle(mytag[3]) * reSizeY);//顶边距
                    Single currentSize = System.Convert.ToSingle(mytag[4]) * reSizeY;//字体大小
                    ctr.Font = new Font(ctr.Font.Name, currentSize, ctr.Font.Style, ctr.Font.Unit);
                    if (ctr.Controls.Count > 0)
                    {
                        SetControls(reSizeX, reSizeY, ctr);
                    }
                }
            }
        }


    }
}

 

使用

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

namespace WindowsFormsApp1
{
    public partial class Form1 : Form
    {      

        WindowZoom windowZoom = new WindowZoom();
        public Form1()
        {
            InitializeComponent();         
            windowZoom.SetForm(this);
        }
        
        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void Form1_Resize(object sender, EventArgs e)
        {           

            windowZoom.SetReSize(this);
        }
    }
}

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#连接SQLserver数据库发布时间:2022-07-18
下一篇:
数据结构(C#):堆栈发布时间:2022-07-18
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap