PowerTools PlusPak for Windows Forms 8.0J
BeginAddControls メソッド (GcResize)
使用例 

このメソッドは、子コントロールコレクションを変更する前に呼び出します。
構文
Public Sub BeginAddControls() 
public void BeginAddControls()
使用例

次のサンプルコードは、フォームがサイズ変更された後にコントロールを追加する方法を示します。

private void GcResizeAddControl(object sender, MouseEventArgs e)
{
    this.gcResize1.BeginAddControls();
    Button newButton = new Button();
    newButton.Location = new Point(130, 240);
    newButton.Size = new Size(100, 30);
    newButton.Text = "NewAddedControl";
    this.Controls.Add(newButton);
    this.gcResize1.EndAddControls();
}
Private Sub GcResizeAddControl(sender As Object, e As MouseEventArgs)
    Me.gcResize1.BeginAddControls()
    Dim newButton As New Button()
    newButton.Location = New Point(130, 240)
    newButton.Size = New Size(100, 30)
    newButton.Text = "NewAddedControl"
    Me.Controls.Add(newButton)
    Me.gcResize1.EndAddControls()
End Sub
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

GcResize クラス
GcResize メンバ

Send Feedback