csharp: DataRelation objects to represent a parent/child/Level relationship

来源:http://www.cnblogs.com/geovindu/archive/2016/05/24/5522580.html
-Advertisement-
Play Games

顯示結果: ID:1 ParentID: 0 TreeLevel: 0 Name:中國ID:2 ParentID: 1 TreeLevel: 1 Name:江西ID:5 ParentID: 2 TreeLevel: 2 Name:南昌ID:6 ParentID: 5 TreeLevel: 3 Nam ...


 /// <summary>
        /// 
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void Page_Load(object sender, EventArgs e)
        {

            var sections = new List<Section>
            {
                new Section { Id = 1, Name = "中國", ParentID = 0 },
                new Section { Id = 2, Name = "江西", ParentID = 1 },
                new Section { Id = 3, Name = "江蘇", ParentID = 1 },
                new Section { Id = 4, Name = "南京", ParentID = 3 },
                new Section { Id = 5, Name = "南昌", ParentID = 2 },
                new Section { Id = 6, Name = "東湖區", ParentID = 5 },
                new Section { Id = 7, Name = "廣東", ParentID = 1 },
                new Section { Id = 8, Name = "深圳", ParentID = 7 },
                new Section { Id = 9, Name = "羅湖區塗聚文", ParentID = 8 }
            };

            //sections = sections.OrderBy(x => x.ParentID).ThenBy(x => x.Name).ToList();
            //var stack = new Stack<Section>();

            //// Grab all the items without parents
            //foreach (var section in sections.Where(x => x.ParentID == default(int)).Reverse())
            //{
            //    stack.Push(section);
            //    sections.RemoveAt(0);
            //}

            var output = new List<Section>();
            //while (stack.Any())
            //{
            //    var currentSection = stack.Pop();

            //    var children = sections.Where(x => x.ParentID == currentSection.Id).Reverse();

            //    foreach (var section in children)
            //    {
            //        stack.Push(section);
            //        sections.Remove(section);
            //    }
            //    output.Add(currentSection);
            //}
            //sections = output;

            List<MySection> mys = MenuHelper.GetMyMenuCollection(sections);

            //ResolveDDL<MySectionMenu>(mys);
            var outputlist = (from mysection in mys orderby mysection.TreeLevel descending select mysection).ToList();
            var outputstringlist = (from mysection in mys orderby mysection.TreeLevel descending select mysection.Name).ToList();

            for (int i = 0; i < outputlist.Count; i++)
            {

                //Response.Write(string.Format("ID:{0} ParentID: {1} TreeLevel: {2} Name:{3}<br/>", mys[i].Id, mys[i].ParentID, mys[i].TreeLevel,mys[i].Name));
                Response.Write(string.Format("ID:{0} ParentID: {1} TreeLevel: {2} Name:{3}<br/>", outputlist[i].Id, outputlist[i].ParentID, outputlist[i].TreeLevel, outputlist[i].Name));
            }



        }


        /// <summary>
        /// 
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="mys"></param>
        protected void ResolveDDL<T>(List<T> mys) where T : MyBaseSection, new()
        {

            ResolveDDL<T>(mys, -1, true);
        }
        /// <summary>
        /// 
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="mys"></param>
        /// <param name="currentId"></param>
        protected void ResolveDDL<T>(List<T> mys, int currentId) where T : MyBaseSection, new()
        {
            ResolveDDL<T>(mys, currentId, true);
        }

        /// <summary>
        /// 將一個樹型結構放在一個下列列表中可供選擇
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="currentId"></param>
        /// <param name="mys"></param>
        protected void ResolveDDL<T>(List<T> mys, int currentId, bool addRootNode) where T : MyBaseSection, new()
        {
            if (addRootNode)
            {
                // 所有節點的TreeLevel加一,然後添加根節點
                foreach (T my in mys)
                {
                    my.TreeLevel += 1;
                }
                T root = new T();
                root.Name = "--根節點--";
                root.Id = 0;
                root.TreeLevel = 0;
                mys.Insert(0, root);
            }


            // currentId==-1表示當前節點不存在
            if (currentId != -1)
            {
                // 本節點不可點擊(也就是說當前節點不可能是當前節點的父節點)
                // 並且本節點的所有子節點也不可點擊,你想如果當前節點跑到子節點的子節點,那麼這些子節點就從樹上消失了
                bool startChileNode = false;
                int startTreeLevel = 0;
                foreach (T my in mys)
                {
                    if (my.Id == currentId)
                    {
                        startTreeLevel = my.TreeLevel;
                        my.Enabled = false;
                        startChileNode = true;
                    }
                    else
                    {
                        if (startChileNode)
                        {
                            if (my.TreeLevel > startTreeLevel)
                            {
                                my.Enabled = false;
                            }
                            else
                            {
                                startChileNode = false;
                            }
                        }
                    }
                }
            }
        }


    }

    /// <summary>
    /// /
    /// </summary>
    public class Section
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public int ParentID { get; set; }
    }
    /// <summary>
    /// 
    /// </summary>
    public class MySection
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public int ParentID { get; set; }
        public int TreeLevel { get; set; }
    }
    /// <summary>
    /// 
    /// </summary>
    public class MySectionMenu : MyBaseSection
    {

    }
    /// <summary>
    /// 
    /// </summary>
    public class MyBaseSection
    {
         public int Id
        {
            get;
            set;
        }

        public int ParentId
        {
            get;
            set;
        }

        public string Name
        {
            get;
            set;
        }
                /// <summary>
        /// 本菜單在樹形結構中層級(從0開始)
        /// </summary>
        public int TreeLevel
        {
            get;
            set;
        }

        /// <summary>
        /// 是否可用(預設true)
        /// </summary>
        public bool Enabled
        {
            get;
            set;
        }

        /// <summary>
        /// 是否葉子節點(預設false)
        /// </summary>
        public bool IsTreeLeaf
        {
            get;
            set;
        }


    }


    /// <summary>
    /// 
    /// </summary>
    public class MenuHelper
    {

        /// <summary>
        /// 
        /// </summary>
        /// <param name="oldMenus"></param>
        /// <returns></returns>
        public static List<MySection> GetMyMenuCollection(List<Section> oldMenus)
        {
            List<MySection> newMenus = new List<MySection>();
            ResolveMenuCollection(oldMenus, newMenus, 0, 0);

            return newMenus;
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="oldMenus"></param>
        /// <param name="newMenus"></param>
        /// <param name="parentId"></param>
        /// <param name="level"></param>
        /// <returns></returns>
        private static int ResolveMenuCollection(List<Section> oldMenus, List<MySection> newMenus, int parentId, int level)
        {
            int count = 0;
            foreach (Section menu in oldMenus)
            {
                if (menu.ParentID == parentId)
                {
                    count++;

                    MySection my = new MySection();
                    newMenus.Add(my);
                    my.TreeLevel = level;
                    my.Id = menu.Id;              
                    my.Name = menu.Name;                
                    my.ParentID = menu.ParentID;       


                    level++;
                    int childCount = ResolveMenuCollection(oldMenus, newMenus, menu.Id, level);      
                    level--;
                }
            }

            return count;
        }
    }

  

 

顯示結果:

ID:1 ParentID: 0 TreeLevel: 0 Name:中國
ID:2 ParentID: 1 TreeLevel: 1 Name:江西
ID:5 ParentID: 2 TreeLevel: 2 Name:南昌
ID:6 ParentID: 5 TreeLevel: 3 Name:東湖區
ID:3 ParentID: 1 TreeLevel: 1 Name:江蘇
ID:4 ParentID: 3 TreeLevel: 2 Name:南京
ID:7 ParentID: 1 TreeLevel: 1 Name:廣東
ID:8 ParentID: 7 TreeLevel: 2 Name:深圳
ID:9 ParentID: 8 TreeLevel: 3 Name:塗聚文


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 關於面試中涉及到的事件的問題,我們只需要抓住幾個關鍵點就好了: 定義事件: 5 } ...
  • 上接 WCF學習之旅—WCF服務部署到IIS7.5(九) WCF學習之旅—WCF服務部署到應用程式(十) 七 WCF服務的Windows 服務程式寄宿 這種方式的服務寄宿,和IIS一樣有一個一樣的優點,系統啟動後,WCF服務也會跟著啟動了,不用人工干預,也是一種較好的寄宿方式。 (1) 在解決方案下 ...
  • 相關博文: "ASP.NET 5 Target framework dnx451 and dnxcore50" .NET Platform Standard:https://github.com/dotnet/corefx/blob/master/Documentation/architecture ...
  • ![圖片來自網路/圖文無關][0] 前言 在C 開發的WinForm窗體程式開發的時候,經常會使用多線程處理一些比較耗時之類的操作。不過會有一個問題:就是涉及到跨線程操作UI元素。 相信才開始接觸的人一定會遇上這個問題。 為瞭解決這個問題,可以通過委托來實現。 我為了後期使用更加方便,就將常用的幾個 ...
  • 擬合 概論 Gap的預測,是建立在一個擬合函數上的。也有一些機器學習的味道。 總的Gap函數 = 函數(時間,地區) TimeID : 時間片編號 DistricID:地區編號 Traffic:交通流量 Weather:天氣 POI:設施數 "百度地圖POI說明" 註意:每家公司的POI分類都是不同 ...
  • dataGridView_htList為一個 DataGridView(ht為HoverTree的縮寫)方法一:dataGridView_htList.Columns["HtAddTime"].HeaderText = "添加時間";其中HtAddTime為列的Name方法二:dataGridVie ...
  • 聲明:本系列為原創,分享本人現用框架,未經本人同意,禁止轉載!http://yuangang.cnblogs.com 希望大家好好一步一步做,所有的技術和項目,都毫無保留的提供,希望大家能自己跟著做一套,還有,請大家放心,只要大家喜歡,有人需要,絕對不會爛尾,我會堅持寫完~ 如果你感覺文章有幫助,點 ...
  • public class MyClass : IDisposable { public int a; public MyClass() { //構造 } public void Dispose() { Dispose(true); ... ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...