Esempio n. 1
0
 internal void RaiseOnSetSecureLockIcon(object sender, SetSecureLockIconEventArgs e) 
 {
     if ((this.SetSecureLockIcon != null)) 
     {
         this.SetSecureLockIcon(sender, e);
     }
 }
Esempio n. 2
0
 public virtual void SetSecureLockIcon(int secureLockIcon) 
 {
     SetSecureLockIconEventArgs setsecurelockiconEvent = new SetSecureLockIconEventArgs(secureLockIcon);
     this.parent.RaiseOnSetSecureLockIcon(this.parent, setsecurelockiconEvent);
 }