最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
好久没有给大家东西了.看见了这个.感觉不错.ListBox with icon
时间:2022-07-02 12:00:40 编辑:袖梨 来源:一聚教程网
Introduction
Hello all,
All of us like more color or image in our control, so am i.
This article, I give custom ListBox class that has image property for each item.
Note: my article has no source code because it very short and easy.
The first: we create 2 class for GListBox
...
// GListBoxItem class
public class GListBoxItem
{
private string _myText;
private int _myImageIndex;
// properties
public string Text
{
get {return _myText;}
set {_myText = value;}
}
public int ImageIndex
{
get {return _myImageIndex;}
set {_myImageIndex = value;}
}
//constructor
public GListBoxItem(string text, int index)
{
_myText = text;
_myImageIndex = index;
Hello all,
All of us like more color or image in our control, so am i.
This article, I give custom ListBox class that has image property for each item.
Note: my article has no source code because it very short and easy.
The first: we create 2 class for GListBox
...
// GListBoxItem class
public class GListBoxItem
{
private string _myText;
private int _myImageIndex;
// properties
public string Text
{
get {return _myText;}
set {_myText = value;}
}
public int ImageIndex
{
get {return _myImageIndex;}
set {_myImageIndex = value;}
}
//constructor
public GListBoxItem(string text, int index)
{
_myText = text;
_myImageIndex = index;
相关文章
- 地狱即我们时间循环怎么关闭 时间循环进入及关闭方法 09-18
- 无主之地4全玉米卷饼收集攻略 玉米卷饼全位置一览 09-18
- 地狱即我们按键怎么操作 全按键功能一览 09-18
- 禁闭求生2怎么做灼热头盔 投弹甲虫套灼热头盔制作教程 09-18
- 无主之地4玉米卷饼戴夫位置在哪 玉米卷饼戴夫位置攻略 09-18
- 禁闭求生2蝴蝶套配方是什么 蝴蝶套护甲制作材料一览 09-18