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


C# Category.collection方法代码示例

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


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

示例1: populateCategoriesCombobox

 /// <summary>
 /// Populate category combobox by loading the values from the database.
 /// Also append the current selection in this way.
 /// </summary>
 private void populateCategoriesCombobox()
 {
     Category categories = new Category();
     DataTable results = categories.collection();
     if (results != null)
     {
         foreach (DataRow row in results.Rows)
         {
             comboBoxCategory.Items.Add(new { category_id = row["category_id"].ToString(), name = row["name"].ToString()});
         }
         comboBoxCategory.ValueMember = "category_id";
         comboBoxCategory.DisplayMember = "name";
     }
 }
开发者ID:replsv,项目名称:minierp,代码行数:18,代码来源:EditProductForm.cs

示例2: refreshCategoriesListView

        /// <summary>
        /// Refresh category list view.
        /// </summary>
        private void refreshCategoriesListView()
        {
            listViewCategories.Items.Clear();
            Category products = new Category();
            DataTable results = products.collection();
            String[] fields = new[] { "name" };
            if (results != null)
            {
                foreach (DataRow row in results.Rows)
                {
                    ListViewItem item = new ListViewItem(new[] { row["category_id"].ToString() });

                    foreach (String rowName in fields)
                    {
                        item.SubItems.Add(row[rowName].ToString());
                    }

                    listViewCategories.Items.Add(item);
                }
            }
            else
            {
                listViewCategories.Items.Add(new ListViewItem(new[] { "Nu exista rezultate" }));
            }

            listViewCategories.View = View.Details;
        }
开发者ID:replsv,项目名称:minierp,代码行数:30,代码来源:Form1.cs


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