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;

    效果如下:

  • 相关阅读:
    Beyond Compare保存快照和CRC比较相结合的方法
    如何在Beyond Compare文本比较时设置书签
    如何使用Navicat for SQLite 触发器
    Navicat Premium 中实用工具介绍
    Beyond Compare查看合并文本后相同内容的方法
    Marriage Match II HDU
    Escape HDU
    kebab HDU
    Task Schedule HDU
    网络流深入
  • 原文地址:https://www.cnblogs.com/springsnow/p/10298710.html
Copyright © 2011-2022 走看看