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;

    效果如下:

  • 相关阅读:
    leetcode_Basic Calculator II
    leetcode_Basic Calculator
    LeetCode_Add Two Numbers
    LeetCode_Partition List
    LeetCode_Compare Version Numbers
    LeetCode—Longest Consecutive Sequence
    Thrift数据类型
    thrift简介
    grpc与json格式互转
    grpc测试
  • 原文地址:https://www.cnblogs.com/springsnow/p/10298710.html
Copyright © 2011-2022 走看看