zoukankan      html  css  js  c++  java
  • TableLayoutPanel 行高列宽设置

       /// <summary>
            /// 获取TableLayoutPanel指定行的高度
            /// </summary>
            /// <param name="layout">TableLayoutPanel</param>
            /// <param name="row">行号</param>
            /// <returns>行高</returns>
            public float GetTlpRowHeight(TableLayoutPanel layout, int row)
            {
                float height = 0;
                int count = layout.RowCount;
                if (row > count) return 0;
    
                for (int i = 1; i <= count; i++)
                {
                    if (!i.Equals(row)) continue;
                    height = layout.RowStyles[i].Height;
                    break;
                }
                return height;
            }
    
            /// <summary>
            /// 设置TableLayoutPanel指定行的高度
            /// </summary>
            /// <param name="layout">TableLayoutPanel</param>
            /// <param name="row">行号</param>
            /// <returns>行高</returns>
            public void SetTlpRowHeight(TableLayoutPanel layout, int row, float height)
            {
                int count = layout.RowCount;
                if (row > count) return;
    
                for (int i = 1; i <= count; i++)
                {
                    if (i == row)
                    {
                        layout.RowStyles[i].Height = height;
                        return;
                    }
                }
            }
    
            /// <summary>
            /// 获取TableLayoutPanel指定行的宽度
            /// </summary>
            /// <param name="layout">TableLayoutPanel</param>
            /// <param name="row">行号</param>
            /// <returns>行宽</returns>
            public float GetTlpColWidth(TableLayoutPanel layout, int col)
            {
                float width = 0;
                try
                {
                    int count = layout.ColumnCount;
                    if (col > count) return 0;
    
                    for (int i = 0; i <= count; i++)
                    {
                        if (!i.Equals(col)) continue;
                        width = layout.ColumnStyles[i].Width;
                        break;
                    }
                }
                catch
                {
                    return width;
                }
                return width;
            }
    
            /// <summary>
            /// 设置TableLayoutPanel指定行的宽度
            /// </summary>
            /// <param name="layout">TableLayoutPanel</param>
            /// <param name="row">行号</param>
            /// <returns>行宽</returns>
            public void SetTlpColWidth(TableLayoutPanel layout, int col, float width)
            {
                try
                {
                    int count = layout.ColumnCount;
                    if (col > count) return;
    
                    for (int i = 0; i <= count; i++)
                    {
                        if (i == col)
                        {
                            layout.ColumnStyles[i].Width = width;
                            return;
                        }
                    }
                }
                catch { return; }
            }
  • 相关阅读:
    idea actiBPM插件之中文乱码
    quartz 集成到Spring中
    Spring 中将service 注入到普通的工具类中
    idea 将java 项目 打包成jar包
    异常来自 HRESULT:0x80070057 (E_INVALIDARG))
    Entity Framework小知识
    C# Unix时间戳转换
    Asp.NET MVC+WebAPI跨域调用
    位运算逻辑与逻辑或逻辑非运算 c# 中如何使用
    c# 学习笔记 重载、重写、重构、构造函数、new、Class
  • 原文地址:https://www.cnblogs.com/YYkun/p/8037405.html
Copyright © 2011-2022 走看看