CheckedListBoxControl 或CheckedListBox 控件中显示水平滚动条 z

public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
DisplayHScroll();
}
/// <summary>
/// 获取或设置一个值,该值指示是否在控件中显示水平滚动条
/// </summary>
private void DisplayHScroll()
{
checkedListBox1.IntegralHeight = true;
for (int x = ; x < ; x++)
{
checkedListBox1.Items.Add("Item " + x.ToString() + " is a very large value that requires scroll bars");
}
checkedListBox1.HorizontalScrollbar=true;
}
}

运行结果如下图:

CheckedListBoxControl 或CheckedListBox 控件中显示水平滚动条 z

参考: http://msdn.microsoft.com/zh-cn/library/system.windows.forms.checkedlistbox.aspx

参考:http://msdn.microsoft.com/zh-cn/library/system.windows.forms.listbox.horizontalscrollbar.aspx

上一篇:SQLAlchemy 中文文档翻译计划


下一篇:CSS3 文本超出后显示省略号...