lixiaojun
2024-09-21 d256755e724aacf39ebc187b399753d845ae359d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
namespace Yw.WinFrmUI.HydroL3d
{
    /// <summary>
    /// 
    /// </summary>
    public partial class Network
    {
 
        /// <summary>
        /// 判断是否存在
        /// </summary>
        public bool IsExist(string id)
        {
            return _parters.Exists(x => x.Id == id);
        }
 
 
        /// <summary>
        /// 绘制
        /// </summary>
        public void Draw()
        {
            foreach (var link in this.Links)
            {
                link.Draw();
            }
            foreach (var node in this.Nodes)
            {
                node.Draw();
            }
        }
 
 
 
 
 
 
 
    }
}