博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
控件缩放
阅读量:5112 次
发布时间:2019-06-13

本文共 3104 字,大约阅读时间需要 10 分钟。

#region zhj-2018-11-19        #region 控件缩放        double formWidth;//窗体原始宽度        double formHeight;//窗体原始高度        double scaleX;//水平缩放比例        double scaleY;//垂直缩放比例        Dictionary
controlInfo = new Dictionary
();//控件中心Left,Top,控件Width,控件Height,控件字体Size ///
/// 获取所有原始数据 /// protected void GetAllInitInfo(Control CrlContainer) { if (CrlContainer.Parent == this) { formWidth = Convert.ToDouble(CrlContainer.Width); formHeight = Convert.ToDouble(CrlContainer.Height); } foreach (Control item in CrlContainer.Controls) { if (item.Name.Trim() != "") controlInfo.Add(item.Name, (item.Left + item.Width / 2) + "," + (item.Top + item.Height / 2) + "," + item.Width + "," + item.Height + "," + item.Font.Size); if ((item as UserControl) == null && item.Controls.Count > 0) GetAllInitInfo(item); } } private void ControlsChangeInit(Control CrlContainer) { scaleX = (Convert.ToDouble(CrlContainer.Width) / formWidth); scaleY = (Convert.ToDouble(CrlContainer.Height) / formHeight); } private void ControlsChange(Control CrlContainer) { double[] pos = new double[5];//pos数组保存当前控件中心Left,Top,控件Width,控件Height,控件字体Size foreach (Control item in CrlContainer.Controls) { if (item.Name.Trim() != "") { if ((item as UserControl) == null && item.Controls.Count > 0) ControlsChange(item); string[] strs = controlInfo[item.Name].Split(','); for (int j = 0; j < 5; j++) { pos[j] = Convert.ToDouble(strs[j]); } double itemWidth = pos[2] * scaleX; double itemHeight = pos[3] * scaleY; item.Left = Convert.ToInt32(pos[0] * scaleX - itemWidth / 2); item.Top = Convert.ToInt32(pos[1] * scaleY - itemHeight / 2); item.Width = Convert.ToInt32(itemWidth); item.Height = Convert.ToInt32(itemHeight); item.Font = new Font(item.Font.Name, float.Parse((pos[4] * Math.Min(scaleX, scaleY)).ToString())); } } } protected override void OnSizeChanged(EventArgs e) { base.OnSizeChanged(e); if (controlInfo.Count > 0) { ControlsChangeInit(this.Controls[0]); ControlsChange(this.Controls[0]); } } #endregion //private void FormSCAB_MouseDown(object sender, MouseEventArgs e) //{ // int x = e.X; //相对form窗口的坐标,客户区坐标 // int y = e.Y; // int x1 = Control.MousePosition.X;//相对显示器,屏幕的坐标 // int y1 = Control.MousePosition.Y; //} #endregion

 

转载于:https://www.cnblogs.com/aijiao/p/10142457.html

你可能感兴趣的文章
涛涛的Party
查看>>
SQL Server 触发器
查看>>
Silverlight 5 系列学习之一
查看>>
最值栈
查看>>
EXTJS中文乱码
查看>>
POJ2226 Muddy Fields 二分匹配 最小顶点覆盖 好题
查看>>
POJ 2528 Mayor's posters 线段树+离散化
查看>>
将DataSet(DataTable)转换成JSON格式(生成JS文件存储)
查看>>
javascript日常学习小记
查看>>
Objective-C 学习笔记(Day 2)
查看>>
如何使用PHP显示在线Word文档
查看>>
Discuz常见小问题-如何设置163邮箱注册验证
查看>>
IO流的基础与小型项目
查看>>
机器学习之--KNN算法简单实现
查看>>
【转】NoSQL小故事:单服务器如何应付每秒75万次查询(2)
查看>>
[Unity Shader] 3D模型的简单属性
查看>>
壁纸推荐2018
查看>>
JQuery对象转dom ,dom转jQuery
查看>>
jquery 异步请求
查看>>
2018-09-25
查看>>