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.
すべて同じクリックイベントを持つボタンがたくさんありますが、それぞれに個別の C# コードを記述せずに、実際にクリックされたボタンを知りたいです。XAML タグを C# の文字列として読み取ることができれば、機能させることができますが、その方法がわかりません。何か案は?ありがとう!!
送信者を Button としてキャストしてから、button.Tag を string としてキャストしないのはなぜですか?
Button _sender = sender as Button; string tag = _sender.Tag as string;
そしてもちろん、タグ値を切り替えて、どのボタンが送信者であったかを知ることができます。