私のメインフォームで:
public string updateButtonText
{
get { return btnInbox.Text; }
set { btnInbox.Text = value; }
}
私のユーザーコントロールで:
public void refreshInbox()
{
try
{
mailboxLogic.constructInbox(lstViewInbox, StudentsData.studentUsername);
frmMailbox.updateButtonText = "Inbox" + "(" + MailboxLogic.emailcounter + ")";
}
catch (Exception ex)
{
MessageBox.Show("1"+ex.Message);
}
}
リストビューを更新するたびに updateButtonText メソッドを呼び出そうとしています。