4

C# Windows フォーム アプリケーションにいくつかのコントロール (グループ ボックス、テーブル、グリッドビューなど) があり、画面の幅/高さに基づいてそれらをスケーリングしたいと考えています。

たとえば、画面は 640x480 で始まり、1920x1200 に最大化されます。

コントロールの幅/高さを増やして、ウィンドウのサイズが変更された後もまったく同じに見えるようにしたいと考えています。

すべての幅/高さのプロパティを手動で設定せずに、それを行う最良の方法は何ですか?

4

2 に答える 2

10

すべての幅/高さのプロパティを手動で設定せずに、それを行う最良の方法は何ですか?

幅と高さを指定する代わりに、 プロパティAnchorDockプロパティを使用して、含まれている要素に基づいてコントロールをスケーリングできます。

あるいは、TableLayoutPanelまたはを使用FlowLayoutPanelしてコントロールを配置することもできます。

于 2013-05-06T17:01:24.750 に答える
0

Anchorコントロールのプロパティが必要だと思います。

名前が示すように、このプロパティは、コントロールを親フォームまたはコントロール内の相対位置または絶対位置に強制的に固定します。このプロパティには、オンまたはオフにできる 4 つの値があります。

Top -- Indicates that the control should keep its top edge stationary in respect to the parent form (or control) top edge.
Bottom -- Indicates that the control should keep its bottom edge stationary in respect to the parent form (or control) bottom edge.
Left -- Indicates that the control should keep its left edge stationary in respect to the parent form (or control) left edge.
Right -- Indicates that the control should keep its right edge stationary in respect to the parent form (or control) right edge.

IIRC では、Ctrl+を使用してフォーム上のすべてのコントロールを選択しA、アンカー プロパティを上、下、左、右に設定します。

于 2013-05-06T17:06:04.897 に答える