コード例 #1
0
 private void StatusBar_PanelClick(object sender, StatusBarPanelClickEventArgs e)
 {
     if (e.StatusBarPanel == StatusBarPanel2 && e.Clicks == 2)
     {
         fContext.SwitchShieldState();
         StatusBar.Invalidate();
     }
 }
コード例 #2
0
ファイル: BaseWinSDI.cs プロジェクト: loxadim/GEDKeeper
 private void StatusBar_MouseDoubleClick(object sender, MouseEventArgs e)
 {
     fContext.SwitchShieldState();
     UpdateShieldState();
     e.Handled = true;
 }