当前位置: 首页>>代码示例>>C#>>正文


C# ListItemCollection.Insert方法代码示例

本文整理汇总了C#中System.Web.UI.WebControls.ListItemCollection.Insert方法的典型用法代码示例。如果您正苦于以下问题:C# ListItemCollection.Insert方法的具体用法?C# ListItemCollection.Insert怎么用?C# ListItemCollection.Insert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Web.UI.WebControls.ListItemCollection的用法示例。


在下文中一共展示了ListItemCollection.Insert方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: FillToListBox

 public static void FillToListBox(ListItemCollection lstItems, DataTable source, int rootId, bool superUser)
 {
     DataRow[] drCommands = source.Select("CommandParentID = " + rootId);
     foreach(DataRow row in drCommands)
     {
         if (!superUser && (bool)row["IsSuperUser"]) continue;
         ListItem rootItem = new ListItem(row["CommandName"].ToString(), row["CommandID"].ToString());
         rootItem.Attributes.Add("Level","0");
         lstItems.Add(rootItem);
         LoadForCurListItem(lstItems, rootItem, source, superUser);
     }
     lstItems.Insert(0, new ListItem("Root","0"));
 }
开发者ID:hoangtung56pm,项目名称:KPINew,代码行数:13,代码来源:CommandController.cs

示例2: InitListItems

 /// <summary>
 /// 绑定控件的ListItem项
 /// </summary>
 /// <param name="LIC"></param>
 /// <param name="IsFistNull"></param>
 public void InitListItems(ListItemCollection LIC, bool IsFistNull)
 {
     if (LIC.Count > 0)
     {
         LIC.Clear();
     }
     Hashtable ht = GetTextValue();
     foreach (DictionaryEntry de in ht)
     {
         LIC.Add(new ListItem(de.Value.ToString(), de.Key.ToString()));
     }
     if (IsFistNull)
     {
         LIC.Insert(0, "");
     }
 }
开发者ID:kingofhawks,项目名称:kcsj,代码行数:21,代码来源:CommonEnum.cs

示例3: LoadEmailTemplateItems

        private void LoadEmailTemplateItems(string templateUrl, string selectedValue)
        {
            try
            {
                txtTemplateName.Items.Clear();
                ListItemCollection DropdownListSource = new ListItemCollection();
                SPList list = Utility.GetListFromURL(templateUrl);
                SPQuery query = new SPQuery() { Query = "<OrderBy><FieldRef Name='Title' Ascending='True' /></OrderBy>" };

                SPListItemCollection items = list.GetItems(query);

                DropdownListSource.Insert(0, (new ListItem() { Text = "Select a template", Value = string.Empty }));
                foreach (SPListItem item in items)
                {
                    DropdownListSource.Add(new ListItem() { Text = item["Title"] as string, Value = item["Title"] as string });
                }
                if (DropdownListSource.Count > 0)
                {
                    BindDropDownSource(txtTemplateName, DropdownListSource);
                    if (string.IsNullOrEmpty(selectedValue))
                        txtTemplateName.Items[0].Selected = true;
                    else
                        txtTemplateName.SelectedValue = selectedValue;

                    //Load Extend DropDownList Source
                    if (AssociateControls != null)
                    {
                        foreach (DropDownList ddl in AssociateControls)
                        {
                            BindDropDownSource(ddl, DropdownListSource);
                        }
                    }
                }
            }
            catch
            {
                if (!string.IsNullOrEmpty(templateUrl) && allowNull == false)
                {
                    txtTemplateName.Items.Clear();
                    txtTemplateUrlValidator.ErrorMessage = "Cannot get email template from this url";
                    txtTemplateUrlValidator.IsValid = false;
                }
            }
        }
开发者ID:chutinhha,项目名称:tvmcorptvs,代码行数:44,代码来源:EmailTemplateSelector.ascx.cs


注:本文中的System.Web.UI.WebControls.ListItemCollection.Insert方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。