| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- 2007-05-07 Jonathan Pobst <[email protected]>
- Applying contributed patch from Stefan Noack.
- * DefaultLayout.cs: Implement AutoSize logic.
- 2007-04-24 Andreia Gaita <[email protected]>
- * TableLayoutSettingsTypeConverter.cs: Implemented the converters
- for TableLayoutSettings.
- 2007-04-22 Jonathan Pobst <[email protected]>
- * DefaultLayout.cs: Use the parent's DisplayRectangle for laying
- out docked children. [Fixes bug #81397]
- 2007-04-04 Jonathan Pobst <[email protected]>
- * FlowLayout.cs: Call SetBounds with BoundsSpecified.None instead of
- using Control Size, Location setters.
- 2007-03-24 Jonathan Pobst <[email protected]>
- * DefaultLayout.cs: Call SetBounds with BoundsSpecified.None instead
- of using SetImplicitBounds.
- * TableLayout.cs: Call SetBounds with BoundsSpecified.None instead of
- modifying Control.Bounds.
- 2007-02-28 Jonathan Pobst <[email protected]>
- * DefaultLayout.cs: Use ClientRectangle instead of DisplayRectangle
- to layout children because DisplayRectangle can be overridden.
- [Fixes bug #80917]
- 2007-02-14 Jonathan Pobst <[email protected]>
- * FlowLayout.cs: Add support for laying out ToolStrips, which
- use ToolStripItems instead of Controls.
- 2007-01-29 Jonathan Pobst <[email protected]>
- * DefaultLayout.cs: MdiClient should always be added last, it should
- never Dock:Fill under other controls. [Fixes a part of bug #80223]
- 2007-01-20 Jonathan Pobst <[email protected]>
- * DefaultLayout.cs: Remove special loop for Dock.Fill and handle
- it with the other docking code. [Fixes bug #80227]
- 2007-01-09 Jonathan Pobst <[email protected]>
- * DefaultLayout.cs: Use PreferredSize for non-Anchor/Dock controls. (2.0)
- Change a SetBounds to SetImplicitBounds.
- 2007-01-07 Jonathan Pobst <[email protected]>
- * ArrangedElementCollection.cs: Make list internal.
- 2006-12-28 Chris Toshok <[email protected]>
- * DefaultLayout.cs: split out the various parts (docking,
- anchoring) into separate methods. make use of the
- Control.ControlLayoutType property, as well as
- Control.VisibleInternal (and fix a couple of unit tests which were
- broken due to use of Visible here.)
- 2006-12-25 Chris Toshok <[email protected]>
- * DefaultLayout.cs: invert the tests for anchoring to make the
- code a little more compact.
- 2006-12-25 Chris Toshok <[email protected]>
- * DefaultLayout.cs: remove references to dist_left and dist_top.
- just use left and top instead.
- 2006-12-23 Chris Toshok <[email protected]>
- * TableLayoutSettingsTypeConverter.cs: new file, a skeleton.
- 2006-12-23 Chris Toshok <[email protected]>
- * DefaultLayout.cs: include this in 1.1, and make use of
- SetImplicitBounds like the Control.PerformLayout code does.
- 2006-12-06 Chris Toshok <[email protected]>
- * DefaultLayout.cs: make Control.child_controls private. switch
- all uses over to Control.Controls.
- 2006-12-04 Chris Toshok <[email protected]>
- * ArrangedElementCollection.cs: fix up corcompare for this file.
- we need to make all the interface methods explicit, not public,
- and add internal methods that can be called from the subclasses
- (we also call them from the explicit implementations.)
- 2006-11-30 Jonathan Pobst <[email protected]>
- * ArrangedElementCollection.cs: Make constructor internal.
- * FlowLayout.cs: Make work with ToolStrip.
- 2006-10-02 Jonathan Pobst <[email protected]>
- * ArrangedElementCollection.cs: Initial commit.
- 2006-09-15 Jonathan Pobst <[email protected]>
- * DefaultLayout.cs, FlowLayout.cs: Initial commit.
|