コード例 #1
0
        public IControlInfo Clone()
        {
            var result = new ControlInfo()
            {
                ShortDescription = this.ShortDescription,
                Description = this.Description,
                ExampleGroups = this.ExampleGroups,
                Examples = this.Examples,
                TouchExamples = this.TouchExamples,
                NonTouchExamples = this.NonTouchExamples,
                Name = this.Name,
                Platform = this.Platform,
                Status = this.Status,
                Text = this.Text
            };

            return result;
        }
コード例 #2
0
		public ExampleGroupInfo(ControlInfo control, XElement element)
		{
			this.element = element;
			this.Control = control;
			this.Initialize();
		}