Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これが私の問題です。
string btn = "btn7"; //this is the problem. btnClone.click += this.controles[btn]_click ;
そのため、文字列を使用してイベントを他のボタンに共有するのが好きで、文字列は必須です。
誰かが私を助けてくれることを願っています。
ID でコントロールを見つけるより標準的な方法は次のようになります。
Button b = (Button)FindControl(btn);
IDがわからない場合は、このように検索することもできます
Button oldButt = this.Controls.OfType<Button>().(b => b.Name == btn).First();