在我的主要表格上:
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 方法。有人可以帮忙吗?