- 2016-12-25
- Visual C#
フォームのサイズ変更不可は、
フォームのFormBorderStyleプロパティ
を以下の何れかに変更する。(デフォルトは、Sizable になっています。)
・None
・FixedSingle・
・Fixed3D
・FixedDialog
・FixedToolWindow
this.FormBorderStyle = FormBorderStyle.FixedSingle;
フォームのサイズ変更不可は、
フォームのFormBorderStyleプロパティ
を以下の何れかに変更する。(デフォルトは、Sizable になっています。)
・None
・FixedSingle・
・Fixed3D
・FixedDialog
・FixedToolWindow
this.FormBorderStyle = FormBorderStyle.FixedSingle;
Copyright © zoro0nine All rights reserved.