我目前正在使用下面的代码填写项目符号列表。它工作正常,但我想知道的是,如果满足某些条件,是否可以更改单个列表项的项目符号样式。可以这样做还是一个列表中的所有项目符号都必须相同?任何帮助表示赞赏。
List<string> EventInfo = new List<string>();
//add list content here
for (int i = 0; i < EventInfo.Count; i++)
{
ListItem stuff = new ListItem();
if (!string.IsNullOrWhiteSpace(EventInfo[i]))
{
stuff.Text = EventInfo[i];
//check if condition is met and change bullet style for this item
BulletedList.Items.Add(stuff);
}
}