/// <summary> /// Adds a <see cref="Window"/> inside this <see cref="Window"/>. /// </summary> /// <param name="window">The <see cref="Window"/> to be added.</param> public void AddWindow(Window window) { windows.Add(window); window.Max = Max.Move(-1, -1); window.Min = Min.Move(1, 1); }