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];
}
}
查看全文
相关阅读:
construction of tuples containing 0 or 1 items
globals()
__new__
ubuntu系统安装mysql登陆提示 解决Mysql ERROR 1045 (28000): Access denied for user 'root'@'localhost'问题
ubuntu系统更新源
Python Web开发问题收集(二)
linux后台执行./run.py提示python syntax error near unexpected token `('
linux下执行scrapy的爬虫定时任务
ubuntu系统中crontab的使用介绍
JMeter BeanShell断言使用
原文地址:https://www.cnblogs.com/taowen/p/21165.html
最新文章
Looping Techniques
urllib.request
URL Parsing
URL Quoting
Prefab强制使用文本模式
安装BeautifulSoup
处理BOM
const实现
关于销售的一点理解
Keynote of Python III
热门文章
python的路径
WSGI
PIL
threadlocal
queue
pickle
__iter__
__future__
map/reduce of python
使用__slots__
Copyright © 2011-2022 走看看