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.
この情報をラベルに表示したい。テキスト ボックスに 50 ~ 60 の数字を入力すると、ラベルに "Good" と表示されます。誰かがこのおかげで私を助けてくれることを願っています。
まず、フォームにボタンを 1 つ追加します。次に、ボタンのクリック イベントで以下のコードを記述します。
int text = int.Parse(TextBoxName.text); if(text>50 && text<60) { LableName.text="Good"; }