public FormUpdateStructureField(CSSLTemplate template, StructureField target)
        {
            InitializeComponent();

            this.template = template;
            this.target = target;
        }
        public object Clone()
        {
            StructureField list = new StructureField();
            list.FieldType = this.FieldType;
            list.FieldName = this.FieldName;

            return list;
        }
        internal static StructureField Parse(XElement xElement)
        {
            if (xElement.Name != typeof(StructureField).Name) { throw new Exception(); }

            StructureField result = new StructureField();
            result.FieldType = xElement.Attribute(strFieldType).Value;
            result.FieldName = xElement.Attribute(strFieldName).Value;

            return result;
        }