如果我有以下代碼:如何從另一個函數編輯創建的控件?
Button[] _buttonarray = new Button[40]; // it is outside any function (situated in the public partial class MainWindow : Window)
而且在功能的新創建的按鈕稱爲
private void createbutton()
{
_buttonarray[b]=new Button();
_buttonarray[b].Content = "Content";
...
}
如何從另一個類的函數編輯_buttonarray[b]
內容,
private void editbutton()
{
_buttonarray[b].Content = "New Content";
}
注意:變量b在外面,所以它可以從任何函數改變。
謝謝。你的回答幫助我解決了我的問題。 –