Hides the window.
()
| 302 | /// Hides the window. |
| 303 | /// </summary> |
| 304 | public void Hide() |
| 305 | { |
| 306 | // Undock |
| 307 | Undock(); |
| 308 | |
| 309 | Visible = false; |
| 310 | |
| 311 | // Ensure that dock panel has no parent |
| 312 | Assert.IsFalse(HasParent); |
| 313 | } |
| 314 | |
| 315 | /// <summary> |
| 316 | /// Closes the window. |