123456789101112131415161718 |
- using System.Windows.Forms;
- using WeifenLuo.WinFormsUI.Docking;
- namespace WWPipeLine.MapBasic
- {
- public partial class ToolWindowExtend : DockContent
- {
- public ToolWindowExtend()
- {
- AutoScaleMode = AutoScaleMode.Dpi;
- this.CloseButtonVisible = false;
- InitializeComponent();
- this.DockAreas = ((DockAreas)((((DockAreas.DockLeft | DockAreas.DockRight)
- | DockAreas.DockTop)
- | DockAreas.DockBottom | DockAreas.Document)));
- }
- }
- }
|