示例#1
0
 void FireParamChanged(string strSection,
                       string strEntry,
                       object value)
 {
     if (this.ParamChanged != null)
     {
         ParamChangedEventArgs e = new ParamChangedEventArgs();
         e.Section = strSection;
         e.Entry   = strEntry;
         e.Value   = value;
         this.ParamChanged(this, e);
     }
 }
示例#2
0
     void FireParamChanged(string strSection,
 string strEntry,
 object value)
     {
         if (this.ParamChanged != null)
         {
             ParamChangedEventArgs e = new ParamChangedEventArgs();
             e.Section = strSection;
             e.Entry = strEntry;
             e.Value = value;
             this.ParamChanged(this, e);
         }
     }