コード例 #1
0
		public KeywordListsNode(XmlElement el)
		{
			Text = ResNodeName("KeywordLists");
			panel = new KeywordListsOptionPanel(this);
			
			if (el == null) return;
			
			XmlNodeList nodes = el.GetElementsByTagName("KeyWords");
			if (nodes == null) return;
			
			foreach (XmlElement el2 in nodes) {
				Nodes.Add(new KeywordListNode(el2));
			}
			
		}
コード例 #2
0
        public KeywordListsNode(XmlElement el)
        {
            Text  = ResNodeName("KeywordLists");
            panel = new KeywordListsOptionPanel(this);

            if (el == null)
            {
                return;
            }

            XmlNodeList nodes = el.GetElementsByTagName("KeyWords");

            if (nodes == null)
            {
                return;
            }

            foreach (XmlElement el2 in nodes)
            {
                Nodes.Add(new KeywordListNode(el2));
            }
        }