Esempio n. 1
0
 /// <summary>
 /// Invokes the logout event when clicking the logout button
 /// </summary>
 /// <param name="sender">The object sender</param>
 /// <param name="e">The EventArgs<</param>
 private void logoutButton_Click(object sender, EventArgs e)
 {
     LogOutButtonClick?.Invoke(this, e);
 }
 /// <summary>
 /// Invokes the logOutButtonClick event when clicking the log out button
 /// </summary>
 /// <param name="sender">The object Sender</param>
 /// <param name="e">The EventArgs</param>
 public virtual void logoutButton_Click(object sender, EventArgs e)
 {
     LogOutButtonClick?.Invoke(this, e);
 }