0

在我的主要表格上:

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 方法。有人可以帮忙吗?

4

1 回答 1

0

如果您只想知道在选择列表视图项时如何更新文本框,那么您需要查看ItemSelectionChanged事件。否则,请查看listview 类中的任何其他事件。

如果你不理解事件,那么我建议这个 SO question

于 2013-02-20T18:45:27.113 回答