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; }
            }
  • 相关阅读:
    【转】[fix] Wireshark error: There are no interfaces on which a capture can be done. on Mac OS X
    【转载】Linux 文件系统的目录结构
    postgreSQL使用
    [转载] Linux启动过程详解-《别怕Linux编程》之八
    冒泡排序
    java值类型和引用类型
    冒泡排序法与二分查找法
    关系型数据库
    SQList的建表并添加数据练习
    数据存储——SQLite数据库存储
  • 原文地址:https://www.cnblogs.com/YYkun/p/8037405.html
Copyright © 2011-2022 走看看