zoukankan      html  css  js  c++  java
  • XtraEditors六、ListBoxControl、CheckedListBoxControl、ImageListBoxControl

    ListBoxControl

    效果如下:

    示例代码:

    string[] girlArr = { "面码", "Saber", "Mathilda" };
    // Set the listBox's background color
    listBoxControl1.BackColor = Color.FromArgb(254, 246, 212);
    // Dock to all edges and fill the parent container
    listBoxControl1.Dock = DockStyle.Fill;
    // Add items
    listBoxControl1.Items.AddRange(girlArr);

    CheckedListBoxControl

    该控件以列表框的形式显示复选列表;

    效果如图:


    示例代码:

    CheckedListBoxItem[] itemArr = {
                         new CheckedListBoxItem("January",false),
                         new CheckedListBoxItem("February", false),
                         new CheckedListBoxItem("March", false),
                         new CheckedListBoxItem("April", false),
                         new CheckedListBoxItem("May", false),
                         new CheckedListBoxItem("June", true),
                         new CheckedListBoxItem("July", true),
                         new CheckedListBoxItem("August", false),
                         new CheckedListBoxItem("September", false),
                         new CheckedListBoxItem("October", false),
                         new CheckedListBoxItem("November", false),
                         new CheckedListBoxItem("December", false)
    };
    checkedListBoxControl1.Items.AddRange(itemArr);

    ImageListBoxControl控件

    https://www.devexpress.com/Support/Center/Question/Details/T106420/how-to-show-image-in-imagelistboxcontrol

    1. 新建窗体

    2. 拖入ImageListBoxControl控件

    3. 拖入ImageCollection控件

    4. 设置ImageListBoxControl的ImageList属性为imageCollection1

    5. 设置ImageCollection的图片,右击选择: Choose Images

    6. 点击窗体上ImageListBoxControl右上角的小箭头,选择Edit Items,设置ImageIndex

    ImageListBoxControl 列表框中的每一项都有显示图片的能力;

    imageListBoxControl1.Items.Add("面码");
    imageListBoxControl1.Items.Add("Saber");
    imageListBoxControl1.Items.Add("Mathilda");
    
    imageListBoxControl1.Items[0].ImageIndex = 0;
    imageListBoxControl1.Items[1].ImageIndex = 1;
    imageListBoxControl1.Items[2}.ImageIndex = 2;

    效果如下:

  • 相关阅读:
    Java GUI学习心得
    Kettle6.0表输入连接数据库
    理解javascript继承 Minoz
    理解作用域 Minoz
    深入理解javascript作用域链 Minoz
    JavaScript数组总结 Minoz
    收获2.css圆角总结 Minoz
    一次前端作业的收获 Minoz
    深入理解闭包 Minoz
    理解javascript原型与原型链 Minoz
  • 原文地址:https://www.cnblogs.com/springsnow/p/10298710.html
Copyright © 2011-2022 走看看