コード例 #1
0
ファイル: MGFuseUI.cs プロジェクト: acdra1n/megafuse
 private void MGFuseUI_FormClosing(object sender, FormClosingEventArgs e)
 {
     if (MegaClient != null)
     {
         if (MegaClient.IsLoggedIn)
         {
             MegaClient.Logout();
         }
     }
     Application.Exit();
 }
コード例 #2
0
 private void quitbtn_Click(object sender, EventArgs e)
 {
     if (MegaClient != null)
     {
         if (MegaClient.IsLoggedIn)
         {
             MegaClient.Logout();
         }
     }
     Application.Exit();
 }