ToolWindowExtend.cs 449 B

123456789101112131415161718
  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. AutoScaleMode = AutoScaleMode.Dpi;
  10. this.CloseButtonVisible = false;
  11. InitializeComponent();
  12. this.DockAreas = ((DockAreas)((((DockAreas.DockLeft | DockAreas.DockRight)
  13. | DockAreas.DockTop)
  14. | DockAreas.DockBottom | DockAreas.Document)));
  15. }
  16. }
  17. }