请告诉我如何将中心与桌面应用程序中的ListBox文本对齐 我在Visual Studio 2005中使用C#.Net。
我正在使用Windows表单。
答案 0 :(得分:8)
您可以将ListBox的DrawMode
属性设置为DrawMode.OwnerDrawFixed
,这样您就可以控制每个项目的整个图形表示。例如:
ListBox listBox = new ListBox();
listBox.DrawMode = DrawMode.OwnerDrawFixed;
listBox.DrawItem += new DrawItemEventHandler(listBox_DrawItem);
void listBox_DrawItem(object sender, DrawItemEventArgs e)
{
ListBox list = (ListBox)sender;
if (e.Index > -1)
{
object item = list.Items[e.Index];
e.DrawBackground();
e.DrawFocusRectangle();
Brush brush = new SolidBrush(e.ForeColor);
SizeF size = e.Graphics.MeasureString(item.ToString(), e.Font);
e.Graphics.DrawString(item.ToString(), e.Font, brush, e.Bounds.Left + (e.Bounds.Width / 2 - size.Width / 2), e.Bounds.Top + (e.Bounds.Height / 2 - size.Height / 2));
}
}
答案 1 :(得分:1)
在WPF中,您将使用Control.HorizontalContentAligment属性:
<ListBox Name="lstSample"
HorizontalContentAlignment="Center"
<ListBoxItem>Item 1</ListBoxItem>
<ListBoxItem>Item 2</ListBoxItem>
<ListBoxItem>Item 3</ListBoxItem>
</ListBox>
在Windows窗体中,您必须通过处理DrawItem事件自行绘制ListBox的内容。这是一个example on how to do it。