博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# Winform 自适应
阅读量:5046 次
发布时间:2019-06-12

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

参考:http://yefenme.blog.163.com/blog/static/13069770420132283644288/

自适应首先考虑的是AutoScaleMode属性设置,其中=DPI对于图片控件来说很有效果,但是其他的就没用了,因此用参考文章中的帮助类AutoSizeFormClass。

  但是在实际应用中发现控件都乱了,一时没找到具体问题所在。后来细细看来,发现我的代码中有动态添加的控件,而参考文章中的初始化获取控件Size是在FormLoad中进行调用controllInitializeSize()的,导致控件数目不对。在动态添加控件时进行获取就可以达到想要的效果。

  但是对于一些Label等控件显示大小与Width,Height值没有关系,只是和Font.Size大小相关,因此还需要特殊处理一番,添加方法如下:

Dictionary
> dgvCols = new Dictionary
>();Dictionary
LabelFonts = new Dictionary
();Dictionary
RadioButtonFonts = new Dictionary
();

 

public void controllInitializeSize_Special(Control mForm)        {        AddControlInfo_Special(mForm);        }
private void AddControlInfo_Special(Control ctl)        {            foreach (Control c in ctl.Controls)            {              if (c.Controls.Count > 0)                    AddControlInfo_Special(c);//窗体内其余控件还可能嵌套控件(比如panel),要单独抽出,因为要递归调用                  if (c is SkinDataGridView )            {              SkinDataGridView dgv = c as SkinDataGridView;                      List
columnsWidth = new List
();              for (int col = 0; col < dgv.Columns.Count; col++)    {                columnsWidth.Add(dgv.Columns[col].Width);   }   dgvCols.Add(c.Name, columnsWidth);            }         if (c is Label)          {            Label label = c as Label; float size = label.Font.Size; LabelFonts.Add(label.Name, size);          }         if (c is RadioButton )          {   RadioButton rdb = c as RadioButton; float size = rdb.Font.Size; RadioButtonFonts.Add(rdb.Name, size);          }      }    }

在Form_Load中调用即可。这样就完美解决了自适应问题。

 

转载于:https://www.cnblogs.com/Betty-IT/p/9592573.html

你可能感兴趣的文章
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
文件操作
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
graphite custom functions
查看>>
ssh无密码登陆屌丝指南
查看>>
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
[CF803C] Maximal GCD(gcd,贪心,构造)
查看>>
oracle连接的三个配置文件(转)
查看>>
Java 8 中如何优雅的处理集合
查看>>
[HNOI2012]永无乡 线段树合并
查看>>
Centos下源码安装git
查看>>
控件发布:div2dropdownlist(div模拟dropdownlist控件)
查看>>
[置顶] 细说Cookies
查看>>
[wp7软件]wp7~~新闻资讯,阅读软件下载大全! 集合贴~~~
查看>>
Extjs String转Json
查看>>
二叉树的遍历问题总结
查看>>
新浪分享API应用的开发
查看>>
美国专利
查看>>
css选择器
查看>>
爬取:中国大学排名
查看>>