由买买提看人间百态

topics

全部话题 - 话题: listitem
(共0页)
M7
发帖数: 219
1
来自主题: Programming版 - Please help: sort XML with Linq
有三个ListItem, 每个ListItem都有一个Property bag (dictionary of key-value
pair)。Property bag里面基本都是无关的key-value pair。有一个key是"SortByKey",
我希望根据SortByKey的value来sort这三个ListItem. 请问用Linq怎么做?
谢谢。

283650e7728e47d1b003b78dc85e8105


iHoVHJ

http://www.w3.org/2001/XMLSchema" i:type="d9p1:strin... 阅读全帖
z********g
发帖数: 241
2
来自主题: Military版 - 出大事了
witch (ddlSatName.SelectedItem.Text)
{
case "探索三号卫星":
ddlType.Items.Clear();
ddlType.Items.Add(new ListItem("GEO目标观测试验"));
ddlType.Items.Add(new ListItem("LEO目标成像试验"));
ddlType_SelectedIndexChanged(ddlType, null);
break;
case "探索四号卫星":
ddlType.Items.Clear();
ddlType.Items.Add(new ListItem("释放抓捕目标试验"));
ddlType.Items.Add(new ListItem("逼近停靠试验"));
ddlType.Items.Add(new ListItem("遥操作试验"));
ddlType_SelectedIndexChanged(ddlType, null);
break;
case "探索五号卫星":
ddlType.Items.Clear();
ddlType.Items.Add(new... 阅读全帖
A*******n
发帖数: 625
3
来自主题: DotNet版 - textbox and radiobuttonlist
TextBox:

radiobuttonlist:
RepeatLayout="Flow" RepeatDirection="Horizontal" Visible="false" >

我想用textbox的value在database里面找到相关的值,再加到radiobuttonlist。
这是我的用的function:
1. marketcode.Attributes.Add("onblur", "javascript:ShowTerms();");
2. function ShowTerms() {
var marketerCode = document.getElementById('<... 阅读全帖
j****n
发帖数: 107
4
来自主题: DotNet版 - 一个dropdownlist的问题
一个dropdownlist,从数据库读取数据动态生成list item.
出现这样一个问题,无论选择了哪一个item,list.SelectedValue永远
等于排在第一的那个item值。
这是可能什么问题造成的?查了一遍又一遍,就是看不出错在哪里了。
哪位牛人来帮我看一下啊?同样的code在其它文件里都跑得好好的。
生成list的code如下:
DropDownList.Items.Clear();
foreach ( ListItem myItem in myListItems)
DropDownList.Items.Add(new ListItem(myItem.Text, myItem.Value));
DropDownList.SelectedIndex = -1;
多谢多谢!
A*******n
发帖数: 625
5
来自主题: DotNet版 - image with RadioButtonList c#
I have a table, it include image name and image.(I save the image to the
database).
I get the image from the database, but how can I bind the image to the
radiobuttonlist? (note: I save the image to the database not folder, so no
image path)
my Code:

var queryforlogo = from a in context.Logoes
where a.DataBaseGroupId == gt.DataBaseGroupId
... 阅读全帖
y***m
发帖数: 7027
l*********h
发帖数: 15
7
来自主题: JobHunting版 - 小弟求问LinkedIn那道Deep Iterator的题
LinkedIn 的题
"Program an iterator for a List which may include nodes or List i.e. * {0,
{1,2}, 3 ,{4,{5, 6}}} Iterator returns 0 - 1 - 2 - 3 - 4 - 5 - 6"
今天翻Design Pattern 的时候看到iterator and composite pattern 突然发现这个和
前一阵一直不会写的Deep Iterator有点像
大概思路是这样的,用一个stack 存放 iterator 如果到了最底层是Integer就输出,
如果iterator.next还是个List,就把这个List的iterator 扔到stack里面,然后
Recusion next()方法。每回从stack里面取的时候看看那个iterator有没有用完,如果
已经遍历到最后用完了,就直接扔出stack
底下是程序
import java.util.ArrayList;
import java.util.Iterator;
import java.util.... 阅读全帖
l*********h
发帖数: 15
8
来自主题: JobHunting版 - 小弟求问LinkedIn那道Deep Iterator的题
LinkedIn 的题
"Program an iterator for a List which may include nodes or List i.e. * {0,
{1,2}, 3 ,{4,{5, 6}}} Iterator returns 0 - 1 - 2 - 3 - 4 - 5 - 6"
今天翻Design Pattern 的时候看到iterator and composite pattern 突然发现这个和
前一阵一直不会写的Deep Iterator有点像
大概思路是这样的,用一个stack 存放 iterator 如果到了最底层是Integer就输出,
如果iterator.next还是个List,就把这个List的iterator 扔到stack里面,然后
Recusion next()方法。每回从stack里面取的时候看看那个iterator有没有用完,如果
已经遍历到最后用完了,就直接扔出stack
底下是程序
import java.util.ArrayList;
import java.util.Iterator;
import java.util.... 阅读全帖
y***m
发帖数: 7027
A**A
发帖数: 3392
b*e
发帖数: 3845
11
来自主题: DotNet版 - listbox 的问题

i think the vertical scrolling bar will automatically appear if the
height of the items is larger thean the height of the listbox.
foreach (ListItem item in aListBox.Items)
{
... = item.Text (or item.Value)
}
d**g
发帖数: 6
12
来自主题: DotNet版 - listbox 的问题

is there any way to get rid of it?
或其他简单的方法得到每个item的值?我用了很笨的办法,每个item
I did this way before,but it seems there is no ListItem namespace in C#.NET.
Thanks
b*e
发帖数: 3845
13
来自主题: DotNet版 - listbox 的问题

How do you feel if there is an item you can't see and can't select from
the listbox?
Dude, you got to double check what namespace ListItem is in and use it.
k**n
发帖数: 3989
14
来自主题: DotNet版 - LinkedList有用吗?
better than是指performance?
不同情况结果不同吧。
比如linedListItem,找nextitem,比listItem找nextitem明显方便。
还有Dictionary与hashtable,
海量数据时,记得都是用hashtable的。
(共0页)