Exemplo n.º 1
0
 private void avatarBoxClick(object sender, EventArgs e)
 {
     if (OnProfileImageClick != null)
     {
         OnProfileImageClick.Invoke(sender, e);
     }
     else
     {
         OnClick?.Invoke(this, EventArgs.Empty);
     }
 }
Exemplo n.º 2
0
 private void pictureBox1_Click_1(object sender, EventArgs e)
 {
     if (OnProfileImageClick != null)
     {
         OnProfileImageClick.Invoke(sender, e);
     }
     else
     {
         OnClick?.Invoke(this, EventArgs.Empty);
     }
 }