本文整理汇总了C#中System.Windows.Forms.CheckedListBox.Clear方法的典型用法代码示例。如果您正苦于以下问题:C# CheckedListBox.Clear方法的具体用法?C# CheckedListBox.Clear怎么用?C# CheckedListBox.Clear使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.CheckedListBox
的用法示例。
在下文中一共展示了CheckedListBox.Clear方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SetLanguage
public static void SetLanguage(CheckedListBox.ObjectCollection items, Type type)
{
StringCollection saveKeys = new StringCollection();
for (int idx = 0; idx < items.Count; idx++)
{
common.myComboBoxItem item = (common.myComboBoxItem)items[idx];
saveKeys.Add(item.Value);
}
if (type == typeof(AppTypes.TimeScale))
{
items.Clear();
for (int idx = 0; idx < saveKeys.Count; idx++)
{
object obj = FindTimeScaleByCode(saveKeys[idx]);
if (obj == null) continue;
AppTypes.TimeScale item = (AppTypes.TimeScale)obj;
items.Add(new common.myComboBoxItem(item.Description, item.Code));
}
return;
}
if (type == typeof(AppTypes.TradeActions))
{
items.Clear();
for (int idx = 0; idx < saveKeys.Count; idx++)
{
object obj = FindCodeInEnum(saveKeys[idx], typeof(AppTypes.TradeActions));
if (obj == null) continue;
AppTypes.TradeActions item = (AppTypes.TradeActions)obj;
items.Add(new common.myComboBoxItem(AppTypes.Type2Text(item), item.ToString()));
}
return;
}
if (type == typeof(AppTypes.TimeRanges))
{
items.Clear();
for (int idx = 0; idx < saveKeys.Count; idx++)
{
object obj = FindCodeInEnum(saveKeys[idx], typeof(AppTypes.TimeRanges));
if (obj == null) continue;
AppTypes.TimeRanges item = (AppTypes.TimeRanges)obj;
items.Add(new common.myComboBoxItem(AppTypes.Type2Text(item), item.ToString()));
}
return;
}
if (type == typeof(AppTypes.StrategyTypes))
{
items.Clear();
for (int idx = 0; idx < saveKeys.Count; idx++)
{
object obj = FindCodeInEnum(saveKeys[idx], typeof(AppTypes.StrategyTypes));
if (obj == null) continue;
AppTypes.StrategyTypes item = (AppTypes.StrategyTypes)obj;
items.Add(new common.myComboBoxItem(AppTypes.Type2Text(item), item.ToString()));
}
return;
}
if (type == typeof(AppTypes.Sex))
{
items.Clear();
for (int idx = 0; idx < saveKeys.Count; idx++)
{
object obj = FindCodeInEnum(saveKeys[idx], typeof(AppTypes.Sex));
if (obj == null) continue;
AppTypes.Sex item = (AppTypes.Sex)obj;
items.Add(new common.myComboBoxItem(AppTypes.Type2Text(item), item.ToString()));
}
return;
}
if (type == typeof(AppTypes.CommonStatus))
{
items.Clear();
for (int idx = 0; idx < saveKeys.Count; idx++)
{
object obj = FindCodeInEnum(saveKeys[idx], typeof(AppTypes.CommonStatus));
if (obj == null) continue;
AppTypes.CommonStatus item = (AppTypes.CommonStatus)obj;
items.Add(new common.myComboBoxItem(AppTypes.Type2Text(item), item.ToString()));
}
return;
}
if (type == typeof(AppTypes.ChartTypes))
{
items.Clear();
for (int idx = 0; idx < saveKeys.Count; idx++)
{
object obj = FindCodeInEnum(saveKeys[idx], typeof(AppTypes.ChartTypes));
if (obj == null) continue;
AppTypes.ChartTypes item = (AppTypes.ChartTypes)obj;
items.Add(new common.myComboBoxItem(AppTypes.Type2Text(item), item.ToString()));
}
return;
}
if (type == typeof(AppTypes.BizSectorTypes))
{
items.Clear();
for (int idx = 0; idx < saveKeys.Count; idx++)
{
object obj = FindCodeInEnum(saveKeys[idx], typeof(AppTypes.BizSectorTypes));
//.........这里部分代码省略.........
示例2: UpdateProviderList
private static void UpdateProviderList(CheckedListBox.ObjectCollection items, string targetServer = null)
{
if (Providers == null)
{
Providers = new System.Collections.Generic.List<string>(SystemEventEnumerator.GetEventProviders(targetServer, null, true));
}
items.Clear();
items.AddRange(Providers.ConvertAll<DropDownCheckListItem>(s => { var p = s.Split('|'); return new DropDownCheckListItem(p[1], p[0]); }).ToArray());
}