これは私のコードです:
List<TabPage> _tpList = new List<TabPage>();
int _iTabCount = 0;
TabPage CreateNewTab(string sTitle)
{
TabPage t = new TabPage();
t.BackColor = Color.White;
t.Text = sTitle;
_tpList.Add(t);
this.Tab.Controls.Add(_tpList[_iTabCount]);
_iTabCount++;
return _tpList[_iTabCount - 1];
}
リスト内のコントロールの1つのクリックイベントを処理したい_tpList
。
これは可能ですか?