可以居中显示。实现方法为
将ComboBox.DrawMode设置为DrawMode.OwnerDrawFixed,
对ComboBox的DrawItem事件编程,各个项目居中显示。
具体步骤如下:
(1)在Visual Studio中创建一个“Windows 窗体应用程序”项目。在Form1上布置一个ComboBox控件
(2)Form1窗体代码Form1.cs
using System.Drawing;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
// 允许代码重新绘制,固定大小
comboBox1.DrawMode = DrawMode.OwnerDrawFixed;
string[] items = {
"项目",
"项目 1",
"项目 10",
"项目 100",
"项目 1000",
"项目 10000"
};
comboBox1.Items.AddRange(items);
}
// 将comboBox1中的项目居中显示!
private void comboBox1_DrawItem(object sender,
DrawItemEventArgs e)
{
string s = this.comboBox1.Items[e.Index].ToString();
// 计算字符串尺寸(以像素为单位)
SizeF ss = e.Graphics.MeasureString(s, e.Font);
// 水平居中
float left = (float)(e.Bounds.Width - ss.Width) / 2;
if (left < 0) left = 0f;
float top = (float)(e.Bounds.Height - ss.Height) / 2;
// 垂直居中
if (top < 0) top = 0f;
top = top + this.comboBox1.ItemHeight * e.Index;
// 输出
e.DrawBackground();
e.DrawFocusRectangle();
e.Graphics.DrawString(
s,
e.Font,
new SolidBrush(e.ForeColor),
left, top);
}
}
}
(3)运行效果
不能
微软封装的这个控件不支持的。
你可以自己写一个控件,添加上你需要的一些的功能。
虽然微软封装的控件不直接支持此功能。
但是你可以在调整窗口大小 的resize事件中使用代码来调整控件的大小和位置呀。
如果数据不是动态的,加空格
貌似不能的