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.
ユーザーがテキストボックスエントリを介してウィンドウフォームの幅/高さを設定できるように、このコードを逆にする方法はありますか?
textBox1.Text = this.Width.ToString();
私はC#でコーディングしています
フォームの境界を設定して試すことができます
this.Bounds = new Rectangle(0,0,Width,Height);
を渡し、WidthからHeightキャプチャしたとおりに渡しTextBoxます。これは、フォームの高さの幅を設定するのに役立ちます。
Width
Height
TextBox