Exemplo n.º 1
0
        private void getAccountInformationToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AccountInformation accountInformation = Connection.GetAccountInformation();

            if (accountInformation != null)
            {
                AccountInformationDialog accountInformationDialog = new AccountInformationDialog(accountInformation.BytesUsed.ToString(), accountInformation.ContainerCount.ToString());
                accountInformationDialog.ShowDialog(this);
            }
            SetSuccessfulMessageInStatusBar();
        }
Exemplo n.º 2
0
 private void getAccountInformationToolStripMenuItem_Click(object sender, EventArgs e)
 {
     AccountInformation accountInformation = Connection.GetAccountInformation();
     if (accountInformation != null)
     {
         AccountInformationDialog accountInformationDialog = new AccountInformationDialog(accountInformation.BytesUsed.ToString(), accountInformation.ContainerCount.ToString());
         accountInformationDialog.ShowDialog(this);
     }
     SetSuccessfulMessageInStatusBar();
 }