Esempio n. 1
0
                private void SetOutline(DockPanel dockPanel, DockStyle dock, bool fullPanelEdge)
                {
                    Rectangle rect = fullPanelEdge ? dockPanel.DockArea : dockPanel.DocumentWindowBounds;

                    rect.Location = dockPanel.PointToScreen(rect.Location);
                    if (dock == DockStyle.Top)
                    {
                        int height = dockPanel.GetDockWindowSize(DockState.DockTop);
                        rect = new Rectangle(rect.X, rect.Y, rect.Width, height);
                    }
                    else if (dock == DockStyle.Bottom)
                    {
                        int height = dockPanel.GetDockWindowSize(DockState.DockBottom);
                        rect = new Rectangle(rect.X, rect.Bottom - height, rect.Width, height);
                    }
                    else if (dock == DockStyle.Left)
                    {
                        int width = dockPanel.GetDockWindowSize(DockState.DockLeft);
                        rect = new Rectangle(rect.X, rect.Y, width, rect.Height);
                    }
                    else if (dock == DockStyle.Right)
                    {
                        int width = dockPanel.GetDockWindowSize(DockState.DockRight);
                        rect = new Rectangle(rect.Right - width, rect.Y, width, rect.Height);
                    }
                    else if (dock == DockStyle.Fill)
                    {
                        rect          = dockPanel.DocumentWindowBounds;
                        rect.Location = dockPanel.PointToScreen(rect.Location);
                    }

                    SetDragForm(rect);
                }
				private void SetOutline(DockPanel dockPanel, DockStyle dock, bool fullPanelEdge) {
					Rectangle rect = fullPanelEdge ? dockPanel.DockArea : dockPanel.DocumentWindowBounds;
					rect.Location = dockPanel.PointToScreen(rect.Location);
					if (dock == DockStyle.Top) {
						int height = dockPanel.GetDockWindowSize(DockState.DockTop);
						rect = new Rectangle(rect.X, rect.Y, rect.Width, height);
					} else if (dock == DockStyle.Bottom) {
						int height = dockPanel.GetDockWindowSize(DockState.DockBottom);
						rect = new Rectangle(rect.X, rect.Bottom - height, rect.Width, height);
					} else if (dock == DockStyle.Left) {
						int width = dockPanel.GetDockWindowSize(DockState.DockLeft);
						rect = new Rectangle(rect.X, rect.Y, width, rect.Height);
					} else if (dock == DockStyle.Right) {
						int width = dockPanel.GetDockWindowSize(DockState.DockRight);
						rect = new Rectangle(rect.Right - width, rect.Y, width, rect.Height);
					} else if (dock == DockStyle.Fill) {
						rect = dockPanel.DocumentWindowBounds;
						rect.Location = dockPanel.PointToScreen(rect.Location);
					}

					SetDragForm(rect);
				}