示例#1
0
 void OnPicturePath(object sender, PicturePathEventArgs e)
 {
     if (PicturePathHandle != null)
     {
         PicturePathHandle(this, e);
     }
 }
示例#2
0
 void PicturePathDelegate(object sender, PicturePathEventArgs e)
 {
     if (PicturePathHandle != null)
     {
         PicturePathHandle(sender, e);
     }
 }