Ejemplo n.º 1
0
 public void SetParameters(int Command, bool Enable)
 {
     this.command = (CommandStateChangeConstants)Command;
     this.enable = Enable;
 }
Ejemplo n.º 2
0
 ///<summary>
 ///Summary of BrowserCommandStateChangeEvent.
 ///</summary>
 ///<param name="command"></param>
 ///<param name="enable"></param>
 public BrowserCommandStateChangeEvent(int command, bool enable)
 {
     this.command = (CommandStateChangeConstants)command;
     this.enable  = enable;
 }
Ejemplo n.º 3
0
 public CommandStateChangeEventArgs(int command, bool enable) 
 {
     this.Command = (CommandStateChangeConstants)command;
     this.Enable = enable;
 }