如果我有以下代码:
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 在外部,因此可以从任何函数中更改。