C# winform 自适应

    public 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);
                }
            }
        }
        public void SetControls(float newx, float newy,Control cons)
        {
            foreach (control con in cons.controls)
            {
                if (con.tag != null)
                {
                    string[] mytag = con.tag.tostring().split(';');
                    con.width = convert.toint32(convert.tosingle(mytag[0]) * newx);//宽度
                    con.height = convert.toint32(convert.tosingle(mytag[1]) * newy);//高度
                    con.left = convert.toint32(convert.tosingle(mytag[2]) * newx);//左边距
                    con.top = convert.toint32(convert.tosingle(mytag[3]) * newy);//右边距
                    //con.font= new font(con.font.name, convert.tosingle(mytag[4]) * newy, con.font.style, con.font.unit);
                    if (con.controls.count > 0)
                    {
                        setcontrols(newx, newy, cons);
                    }
                }
            }
        }

  

posted on 2024-06-14 10:51  冰魂雪魄  阅读(4)  评论(0编辑  收藏  举报

WPF框架交流群:C#.net. WPF.core 技术交流�      C#WPF技术交流群:C#.net. WPF.core 技术交流�     WPF技术大牛交流群:C#.net. WPF.core 技术交流�