public ucInfoUser(FrmUser frmMain) { this.frmMain = frmMain; InitializeComponent(); InitControls(); locationlabel(ref lbName, pnavata_name); locationlabel(ref lbID, pnavata_name); locationpanel(ref panel1, pnavata_name); this.frmMain.Pncontaininfo.Controls.Add(this); this.Dock = DockStyle.Top; pnaddfile.Visible = false; }
public ucVoicePanel(User user, FrmUser userForm) { InitializeComponent(); InitPictureBox(); this.user = user; this.userForm = userForm; voice = new VoiceControl(user); voice.Path = voice.GetNextPath(); timer = new Timer(); timer.Tick += Timer_Tick; timer.Interval = 1000; this.panelRecord.Controls.Add(pctRecord); }
private void InitUserForm() { userForm = new FrmUser(user, this); userForm.TopLevel = false; userForm.Dock = DockStyle.Fill; }