StephaneLenclud@250: using System; StephaneLenclud@250: using System.Collections.Generic; StephaneLenclud@250: using System.Linq; StephaneLenclud@250: using System.Runtime.Serialization; StephaneLenclud@250: using System.Text; StephaneLenclud@250: using System.Threading.Tasks; StephaneLenclud@250: StephaneLenclud@250: namespace SharpLib.Ear StephaneLenclud@250: { StephaneLenclud@250: /// StephaneLenclud@250: /// Generic button property StephaneLenclud@250: /// StephaneLenclud@250: [DataContract] StephaneLenclud@250: [AttributeObject(Id = "Property.Button", Name = "Button", Description = "Button property.")] StephaneLenclud@250: public class PropertyButton : Object StephaneLenclud@250: { StephaneLenclud@250: public EventHandler ClickEventHandler; StephaneLenclud@250: StephaneLenclud@250: [DataMember] StephaneLenclud@250: public string Text { get; set; } StephaneLenclud@250: } StephaneLenclud@250: }