Beispiel #1
0
 private void toolStripButtonBookmark_Click(object sender, EventArgs e)
 {
     if (CurrentLogWindow != null)
     {
         CurrentLogWindow.ToggleBookmark();
     }
 }
Beispiel #2
0
 private void toggleBookmarkToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (CurrentLogWindow != null)
     {
         CurrentLogWindow.ToggleBookmark();
     }
 }
 private void OnToolStripButtonBookmarkClick(object sender, EventArgs e)
 {
     CurrentLogWindow?.ToggleBookmark();
 }
 private void OnToggleBookmarkToolStripMenuItemClick(object sender, EventArgs e)
 {
     CurrentLogWindow?.ToggleBookmark();
 }