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.
リッチ テキスト ボックスにフォントを配置するための 3 つのボタンがあります。現在、各ボタンをクリックすると、「チェック」されます (アイコンの周りに青い境界線が表示されます)。他のボタンのいずれかが選択されているときに、現在チェックされているボタンのチェックを外す方法はありますか?
次の行に沿って何かを使用できます。
If (Button1.Checked == true) { Button2.Checked = false; } Else { Button2.Checked = true; }
すべてのボタンを繰り返します。