GrapeCity.Win.Components 名前空間 > GcResize クラス : 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