public ReceptionRfPanel(ReceptionRfAction action)
 {
     InitializeComponent();
     this.action      = action;
     this.cbVariables = new MowayComboBox[8] {
         this.cbVariable0, this.cbVariable1, this.cbVariable2, this.cbVariable3, this.cbVariable4, this.cbVariable5, this.cbVariable6, this.cbVariable7
     };
 }
Esempio n. 2
0
 public ReceptionRfForm(ReceptionRfAction action)
 {
     InitializeComponent();
     this.helpTopic   = ReceptionRf.HelpTopic;
     this.action      = action;
     this.cbVariables = new MowayComboBox[8] {
         this.cbVariable0, this.cbVariable1, this.cbVariable2, this.cbVariable3, this.cbVariable4, this.cbVariable5, this.cbVariable6, this.cbVariable7
     };
 }
Esempio n. 3
0
 public ReceptionRfGraphic(string key, ReceptionRfAction element, Point center)
     : base(key, element, center)
 {
     this.needInit = System.Convert.ToBoolean(ReceptionRf.NeedInit);
     this.Surface.Blit(new Surface(ReceptionRf.GraphicIcon));
 }