PanelClientContainer.cs 797 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Forms;
  7. namespace ErgometerApplication
  8. {
  9. public class PanelClientContainer:Panel
  10. {
  11. public PanelClientChat panelClientChat;
  12. public PanelClientContainer() : base()
  13. {
  14. this.panelClientChat = new PanelClientChat();
  15. //
  16. // panelClientContainer
  17. //
  18. this.Controls.Add(this.panelClientChat);
  19. this.Dock = System.Windows.Forms.DockStyle.Fill;
  20. this.Location = new System.Drawing.Point(0, 0);
  21. this.Name = "panelClientContainer";
  22. this.Size = new System.Drawing.Size(800, 600);
  23. this.TabIndex = 0;
  24. }
  25. }
  26. }