您的位置:首页 > 新闻 > 资讯 > 中国移动网上营业厅官网_网页构成有哪几部分_排名优化网站_霸屏seo服务

中国移动网上营业厅官网_网页构成有哪几部分_排名优化网站_霸屏seo服务

2024/12/28 12:04:23 来源:https://blog.csdn.net/u012269637/article/details/144102078  浏览:    关键词:中国移动网上营业厅官网_网页构成有哪几部分_排名优化网站_霸屏seo服务
中国移动网上营业厅官网_网页构成有哪几部分_排名优化网站_霸屏seo服务

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

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;
            }
        }

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com