我想动态添加一个usercontrol(这个工作正常),然后设置它的父级(这不能正常工作)。
我目前的代码是:
ucGrid1 = New ucGrid
ucGrid.Parent = Me.TableLayoutPanel1'the ".Parent" property is not available
ucGrid1.Dock = DockStyle.Fill
谢谢!
答案 0 :(得分:1)
确保您的ucGrid
是继承自System.Windows.Forms.Control
的控件。如果需要,请特别添加命名空间。