Sign in

RF / weld · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • weld
  • Barcode -new
  • XmlConfig.cs
  • 提供xml解析和界面设置两种方式调试设置尺寸
    562ae0a3
    游杰 authored
    2019-01-10 19:15:02 +0800  
    Browse Code »
XmlConfig.cs 458 Bytes
Edit Raw Blame History
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;

namespace HaierExe04
{

    [XmlType(TypeName = "PData")]
    public class XmlConfig
    {

        [XmlType(TypeName = "Receive")]
        public class Receive
        {
            [XmlAttribute]
            public string Model { get; set; }

            [XmlAttribute]
            public string Type { get; set; }
        }
    }

}