111,126
社区成员
发帖
与我相关
我的任务
分享
public partial class UserPanelCon : Panel
{
public UserPanelCon () {
InitializeComponent();
AddControl();
}
protected void AddControl () {
Button btn = new Button();
btn.Text = "new";
btn.Location = this.Location;
btn.Width = 100;
btn.Height = 50;
this.Controls.Add(btn);
}
}