FlowLayoutPanel.WrapContents 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
FlowLayoutPanel 컨트롤에서 내용을 래핑할지 또는 클리핑할지 나타내는 값을 가져오거나 설정합니다.
public:
property bool WrapContents { bool get(); void set(bool value); };
public bool WrapContents { get; set; }
member this.WrapContents : bool with get, set
Public Property WrapContents As Boolean
속성 값
내용을 래핑하면 true
이고, 그렇지 않으면 false
입니다. 기본값은 true
입니다.
예제
다음 코드 예제에서는 컨트롤의 값에 WrapContents Checked 따라 속성의 CheckBox 값을 설정합니다.
private:
void wrapContentsCheckBox_CheckedChanged(
System::Object^ sender, System::EventArgs^ e)
{
this->flowLayoutPanel1->WrapContents =
this->wrapContentsCheckBox->Checked;
}
private void wrapContentsCheckBox_CheckedChanged(
System.Object sender,
System.EventArgs e)
{
this.FlowLayoutPanel1.WrapContents =
this.wrapContentsCheckBox.Checked;
}
Private Sub wrapContentsCheckBox_CheckedChanged( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles wrapContentsCheckBox.CheckedChanged
Me.FlowLayoutPanel1.WrapContents = Me.wrapContentsCheckBox.Checked
End Sub
설명
패널의 영역이 너무 작아서 모든 자식 컨트롤을 포함할 수 없는 경우 래핑 모드에 관계없이 하나 이상의 자식 컨트롤이 잘립니다.
패널의 후속 크기 조정은 포함된 컨트롤에 레이아웃을 다시 적용합니다.