007. 自定义ListBox的item的宽高, 字体居中

Posted 无止境

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了007. 自定义ListBox的item的宽高, 字体居中相关的知识,希望对你有一定的参考价值。

 /// <summary>
        /// 自定义ListBox的item的宽高, 字体居中
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void lisB_DrawItem(object sender, DrawItemEventArgs e)
        {
            if (e.Index == -1)
            {
                return;
            }
            e.DrawBackground(); //绘制各项的背景色
            e.DrawFocusRectangle(); 
            //让文字位于Item的中间
            float difH = (e.Bounds.Height - e.Font.Height) / 2;
            //指定绘制文本的位置
            RectangleF rf = new RectangleF(e.Bounds.X, e.Bounds.Y + difH, e.Bounds.Width, e.Font.Height);
            //绘制指定的字符串
            e.Graphics.DrawString(lisB.Items[e.Index].ToString(), e.Font, new SolidBrush(Color.Black), rf);
        }

        private void lisB_MeasureItem(object sender, MeasureItemEventArgs e)
        {
          //if(e.Index==1)  指定某一行的高度
                e.ItemHeight = 22;
        }

 

以上是关于007. 自定义ListBox的item的宽高, 字体居中的主要内容,如果未能解决你的问题,请参考以下文章

如何在自定义单元格的 initWithStyle: 方法中获取 UITableView 的宽高?

设置自定义dialog的正确宽高

设置自定义dialog的正确宽高

设置自定义dialog的正确宽高

lodopfuncs js插件怎么设置打印的宽高

屏幕适配:百分比布局