zoukankan
html css js c++ java
贴两段代码
因为没有找到如何在ComboBox和ListBox中的item附加tag的办法,所以自己添加了一下。主要是试验一下如何用博客园新加的代码高亮这个酷酷的功能:
public
class
FlexComboBox : System.Windows.Forms.ComboBox
{
private
System.Collections.ArrayList ItemValues
=
new
System.Collections.ArrayList();
public
void
FlexAddItem(
string
itemText,
object
itemValue)
{
this
.Items.Add(itemText);
ItemValues.Add(itemValue);
}
public
object
FlexGetSelectedItemValue()
{
return
ItemValues[
this
.SelectedIndex];
}
public
void
FlexClearItems()
{
ItemValues.Clear();
this
.Items.Clear();
}
}
public
class
FlexListBox : System.Windows.Forms.ListBox
{
private
ArrayList itemValues
=
new
ArrayList();
public
FlexListBox()
{ }
public
void
FlexAddItem(
string
itemText,
object
itemValue)
{
this
.Items.Add(itemText);
itemValues.Add(itemValue);
}
public
void
FlexRemoveSelectedItems()
{
for
(
int
i
=
0
;i
<
this
.SelectedIndices.Count;i
++
)
{
int
index
=
this
.SelectedIndices[i];
this
.Items.RemoveAt(index);
itemValues.RemoveAt(index);
}
}
public
void
FlexClearItems()
{
itemValues.Clear();
this
.Items.Clear();
}
public
ArrayList FlexGetItemValues()
{
return
itemValues;
}
public
object
FlexGetSelectedValue()
{
return
itemValues[
this
.SelectedIndex];
}
}
查看全文
相关阅读:
WindowsForm:百科
App-应用程式:百科
ASP.NET:目录
ASP.NET:百科
操作平台:.NET
DB-触发器:百科
DB-DatabaseLink:百科
5090 众数
计数排序
归并排序
原文地址:https://www.cnblogs.com/taowen/p/21165.html
最新文章
计算机网络系列:2M的宽带指的是下载速度么?
Unity3D 快捷键
Chrome浏览器快捷键大全
.NET应用程序调试—原理、工具、方法
eclipse Kepler tomcat内存溢出解决方式
HDU 1003 Max Sum (动规)
vijos1308 埃及分数(迭代加深搜索)
结构体之位域全面分析
飘逸的python
Linux进程间通信——使用消息队列
热门文章
c的链接详解
poj 2486 Apple Tree (树形背包dp)
poj 3345 Bribing FIPA (树形背包dp | 输入坑)
hdu 4597 Play Game(区间dp)
uva 10670 Work Reduction(贪心)
The connection to adb is down, and a severe error has occured. 错误
PHP 自学之路-----XML编程(Dom技术)
Winform:百科
WindowsForm-开发工具-VisualStudio:适用于 Windows 应用和游戏的工具
WindowsForm:目录
Copyright © 2011-2022 走看看