当前位置: 首页 > article >正文

WPF的表格控件 FlexGrid设置行的高度自适应

行高自适应通过内容长度设置的,有列宽自适应方法,行高的试过不行,于是用内容长度控制行高        

private void FlexGrid_LoadedRows_RowIndex(object sender, EventArgs e)
        {
            ViewHelper.SetRowIndexNoPage(CfgReviewItem);
            //CfgReviewItem.Rows[0].Height;
            // CfgReviewItem.AutoSizeRow(1,0);
            if (CfgReviewItem == null) return;
            if (CfgReviewItem.Rows.Count > 0)
            {
                int i = 0;
                int CustomerRequestLength = 0;
                int InPlantCapacityLength = 0;
                int SchemeDescribeLength = 0;
                bool istrue = true;
                foreach (var row in CfgReviewItem.Rows)
                {
                    var model = row.DataItem as HardBCReviewItemModel;
                    if (model == null) continue;
                    //获取长度
                    string CustomerRequest = model.CustomerRequest;
                    string InPlantCapacity = model.InPlantCapacity;
                    string SchemeDescribe = model.InPlantCapacity;
                    istrue = string.IsNullOrEmpty(CustomerRequest);
                    CustomerRequestLength = istrue ? 0 : CustomerRequest.Length;
                    istrue = string.IsNullOrEmpty(InPlantCapacity);
                    InPlantCapacityLength = istrue ? 0 : InPlantCapacity.Length;
                    istrue = string.IsNullOrEmpty(SchemeDescribe);
                    SchemeDescribeLength = istrue ? 0 : SchemeDescribe.Length;
                    if (CustomerRequestLength >= InPlantCapacityLength&& CustomerRequestLength >= SchemeDescribeLength) {
                        setHeight(CustomerRequestLength, i);
                        i++;
                        continue;
                    }else
                    if (InPlantCapacityLength >= CustomerRequestLength && InPlantCapacityLength >= SchemeDescribeLength)
                    {
                        setHeight(InPlantCapacityLength, i);
                        i++;
                        continue;
                    } else
                    if (SchemeDescribeLength >= InPlantCapacityLength && SchemeDescribeLength >= CustomerRequestLength)
                    {
                        setHeight(SchemeDescribeLength, i);
                        i++;
                        continue;
                    }
                }
            }
            // CfgReviewItem.Rows[0].Height = 200;
            //  列宽自适应  CfgReviewItem.AutoSizeColumns(0, CfgReviewItem.Columns.Count, 0);
        }
        public void setHeight(int height,int i) {
            if (height < 100)
            {
                 CfgReviewItem.Rows[i].Height = 50;
            }
            else if (height > 100 && height < 200)
            {
                 CfgReviewItem.Rows[i].Height = 100;
            }
            else if (height > 200)
            {
                 CfgReviewItem.Rows[i].Height = 200;
            }
        }


http://www.kler.cn/a/413790.html

相关文章:

  • [MRCTF2020]Transform
  • 如何通过智能生成PPT,让演示文稿更高效、更精彩?
  • Java基础面试题07:finalize() 方法什么时候被调用?析构函数(finalization)的目的是什么?
  • Web会话安全测试
  • 【逐行注释】自适应观测协方差R的AUKF(自适应无迹卡尔曼滤波,MATLAB语言编写),附下载链接
  • NAT:连接私有与公共网络的关键技术(4/10)
  • 【优选算法】位运算
  • 面经-综合面/hr面
  • shell脚本_不同脚本的互相调用和重定向操作
  • 【Linux】命令行参数与环境变量
  • 微软企业邮箱:安全可靠的企业级邮件服务!
  • C# 反射详解
  • 优先算法 —— 双指针系列 - 有效三角形的个数
  • Kubernetes(k8s)1.30.7简单快速部署对外部开放的有状态服务MYSQL8(快速有效)
  • 【组件封装】uniapp vue3 封装一个自定义下拉刷新组件pullRefresh,带刷新时间和加载动画教程
  • 什么是Git
  • C语言——指针初阶(一)
  • Zookeeper学习心得
  • linux安全管理-日志审计
  • fatal error in include chain (rtthread.h):rtconfig.h file not found
  • 如何设置爬虫的异常处理?(代码示例)
  • 【Leetcode 每日一题】25. K 个一组翻转链表
  • 动态加载Jar包引发的“java.util.zip.ZipException: invalid distance too far back”
  • 定制独立站系统需要哪些技术支持?
  • 不间断电源 (UPS) 对现代技术可靠性的影响
  • 机器学习之DeepMind推出的DreamerV3