ToolWindowExtend.cs 526 B

1234567891011121314151617181920
  1. using System.Windows.Forms;
  2. using WeifenLuo.WinFormsUI.Docking;
  3. namespace WWPipeLine.MapBasic
  4. {
  5. public partial class ToolWindowExtend : DockContent
  6. {
  7. public ToolWindowExtend()
  8. {
  9. this.AutoScaleMode = AutoScaleMode.Dpi;
  10. this.CloseButtonVisible = false;
  11. this.CloseButton = false;
  12. this.AllowEndUserDocking = false;
  13. InitializeComponent();
  14. //this.DockAreas = ((DockAreas)((((DockAreas.DockLeft | DockAreas.DockRight)
  15. //| DockAreas.DockTop)
  16. //| DockAreas.DockBottom | DockAreas.Document)));
  17. }
  18. }
  19. }