示例#1
0
 protected void OnWarning(StringEventArgs e)
 {
     if(this.Warning != null)
         this.Warning(this, e);
 }
示例#2
0
 protected void Converter_Warning(
         object sender,
         StringEventArgs e)
 {
     if(this.Warning != null)
         this.Warning(sender, e);
 }
示例#3
0
 protected void OnError(StringEventArgs e)
 {
     if(this.Error != null)
         this.Error(this, e);
 }
示例#4
0
 protected void Converter_Error(object sender, StringEventArgs e)
 {
     if(this.Error != null)
         this.Error(sender, e);
 }