示例#1
0
 public Dialog(HelpHandler helpHandler, Topic t = Topic.Unknow)
     : base(null)
 {
     this.SetHandler(helpHandler, t);
 }
示例#2
0
 public Application(HelpHandler helpHandler) : base(helpHandler)
 {
 }
示例#3
0
 public Widge(HelpHandler helpHandler) : base(helpHandler)
 {
 }
示例#4
0
 public Dialog(HelpHandler helpHandler) : base(helpHandler)
 {
 }
示例#5
0
 public Button(HelpHandler widget) : base(widget)
 {
 }
示例#6
0
 public HelpHandler(HelpHandler helpHandler)
 {
     successor = helpHandler;
 }
示例#7
0
 public virtual void SetHandler(HelpHandler helpHandler, Topic topic)
 {
     this.successor = helpHandler;
     this.topic     = topic;
 }
示例#8
0
 public HelpHandler(HelpHandler helpHandler = null, Topic topic = Topic.Unknow)
 {
     this.successor = helpHandler;
     this.topic     = topic;
 }