VB.NET添加控件并设置父级

时间:2014-05-21 22:28:17

标签: vb.net winforms

我想动态添加一个usercontrol(这个工作正常),然后设置它的父级(这不能正常工作)。

我目前的代码是:

    ucGrid1 = New ucGrid
    ucGrid.Parent = Me.TableLayoutPanel1'the ".Parent" property is not available
    ucGrid1.Dock = DockStyle.Fill

谢谢!

1 个答案:

答案 0 :(得分:1)

确保您的ucGrid是继承自System.Windows.Forms.Control的控件。如果需要,请特别添加命名空间。