DockPanel.cs 403 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace NXWMS
  10. {
  11. public partial class DockPanel : UserControl
  12. {
  13. public DockPanel(Form frm)
  14. {
  15. InitializeComponent();
  16. kryptonPanel.Controls.Add(frm);
  17. }
  18. }
  19. }