Пример #1
0
        private static IvyLabel parseXMLLabel(XmlNode e)
        {
            IvyLabel label = new IvyLabel();

            foreach (XmlAttribute attr in e.Attributes)
            {
                if (getComponentAttributes(label, attr))
                {
                    continue;
                }

                if (getTextComponentAttributes(label, attr))
                {
                    continue;
                }
            }

            return(label);
        }
Пример #2
0
        private static IvyLabel parseXMLLabel(XmlNode e)
        {
            IvyLabel label = new IvyLabel();

            foreach (XmlAttribute attr in e.Attributes)
            {
                if (getComponentAttributes(label, attr))
                {
                    continue;
                }

                if (getTextComponentAttributes(label, attr))
                {
                    continue;
                }
            }

            return label;
        }