3c1f479b9d
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
1725 lines
54 KiB
C#
1725 lines
54 KiB
C#
//
|
|
// TableLayoutTests.cs
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining
|
|
// a copy of this software and associated documentation files (the
|
|
// "Software"), to deal in the Software without restriction, including
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
// distribute, sublicense, and/or sell copies of the Software, and to
|
|
// permit persons to whom the Software is furnished to do so, subject to
|
|
// the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be
|
|
// included in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
//
|
|
// Copyright (c) 2006 Jonathan Pobst
|
|
//
|
|
// Authors:
|
|
// Jonathan Pobst (monkey@jpobst.com)
|
|
//
|
|
|
|
using System;
|
|
using System.Drawing;
|
|
using System.IO;
|
|
using System.Runtime.Serialization.Formatters.Binary;
|
|
using System.Windows.Forms;
|
|
using NUnit.Framework;
|
|
|
|
namespace MonoTests.System.Windows.Forms
|
|
{
|
|
[TestFixture]
|
|
public class TableLayoutTests : TestHelper
|
|
{
|
|
[Test]
|
|
public void TestConstruction ()
|
|
{
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
|
|
Assert.AreEqual (BorderStyle.None, p.BorderStyle, "A1");
|
|
Assert.AreEqual (TableLayoutPanelCellBorderStyle.None, p.CellBorderStyle, "A2");
|
|
Assert.AreEqual (0, p.ColumnCount, "A3");
|
|
Assert.AreEqual (TableLayoutPanelGrowStyle.AddRows, p.GrowStyle, "A4");
|
|
Assert.AreEqual ("System.Windows.Forms.Layout.TableLayout", p.LayoutEngine.ToString (), "A5");
|
|
Assert.AreEqual ("System.Windows.Forms.TableLayoutSettings", p.LayoutSettings.ToString (), "A6");
|
|
Assert.AreEqual (0, p.RowCount, "A7");
|
|
Assert.AreEqual (0, p.ColumnStyles.Count, "A8");
|
|
Assert.AreEqual (0, p.RowStyles.Count, "A9");
|
|
Assert.AreEqual (new Size (200, 100), p.Size, "A10");
|
|
}
|
|
|
|
[Test]
|
|
public void TestPropertySetters ()
|
|
{
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
|
|
p.BorderStyle = BorderStyle.Fixed3D;
|
|
p.CellBorderStyle = TableLayoutPanelCellBorderStyle.OutsetDouble;
|
|
p.ColumnCount = 1;
|
|
p.GrowStyle = TableLayoutPanelGrowStyle.FixedSize;
|
|
p.RowCount = 1;
|
|
|
|
Assert.AreEqual (BorderStyle.Fixed3D, p.BorderStyle, "A1");
|
|
Assert.AreEqual (TableLayoutPanelCellBorderStyle.OutsetDouble, p.CellBorderStyle, "A2");
|
|
Assert.AreEqual (1, p.ColumnCount, "A3");
|
|
Assert.AreEqual (TableLayoutPanelGrowStyle.FixedSize, p.GrowStyle, "A4");
|
|
Assert.AreEqual (1, p.RowCount, "A7");
|
|
}
|
|
|
|
[Test]
|
|
public void TestExtenderMethods ()
|
|
{
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c = new Button ();
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (-1, -1), p.GetCellPosition (c), "A1");
|
|
Assert.AreEqual (-1, p.GetColumn (c), "A2");
|
|
Assert.AreEqual (1, p.GetColumnSpan (c), "A3");
|
|
Assert.AreEqual (-1, p.GetRow (c), "A4");
|
|
Assert.AreEqual (1, p.GetRowSpan (c), "A5");
|
|
|
|
p.SetCellPosition (c, new TableLayoutPanelCellPosition (1, 1));
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 1), p.GetCellPosition (c), "A6");
|
|
|
|
p.SetColumn (c, 2);
|
|
Assert.AreEqual (2, p.GetColumn (c), "A7");
|
|
p.SetRow (c, 2);
|
|
Assert.AreEqual (2, p.GetRow (c), "A9");
|
|
|
|
p.SetColumnSpan (c, 2);
|
|
Assert.AreEqual (2, p.GetColumnSpan (c), "A8");
|
|
|
|
|
|
p.SetRowSpan (c, 2);
|
|
Assert.AreEqual (2, p.GetRowSpan (c), "A10");
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (2, 2), p.GetCellPosition (c), "A11");
|
|
|
|
// ???????
|
|
//Assert.AreEqual (new TableLayoutPanelCellPosition (-1, -1), p.GetPositionFromControl (c), "A12");
|
|
//Assert.AreEqual (c, p.GetControlFromPosition(0, 0), "A13");
|
|
}
|
|
|
|
[Test]
|
|
public void TestColumnStyles ()
|
|
{
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
|
|
p.ColumnStyles.Add (new ColumnStyle ());
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Absolute));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 20F));
|
|
|
|
Assert.AreEqual (3, p.ColumnStyles.Count, "A1");
|
|
Assert.AreEqual (SizeType.AutoSize, p.ColumnStyles[0].SizeType, "A2");
|
|
Assert.AreEqual (0, p.ColumnStyles[0].Width, "A3");
|
|
Assert.AreEqual (SizeType.Absolute, p.ColumnStyles[1].SizeType, "A4");
|
|
Assert.AreEqual (0, p.ColumnStyles[1].Width, "A5");
|
|
Assert.AreEqual (SizeType.Percent, p.ColumnStyles[2].SizeType, "A6");
|
|
Assert.AreEqual (20F, p.ColumnStyles[2].Width, "A7");
|
|
|
|
p.ColumnStyles.Remove (p.ColumnStyles[0]);
|
|
|
|
Assert.AreEqual (2, p.ColumnStyles.Count, "A8");
|
|
Assert.AreEqual (SizeType.Absolute, p.ColumnStyles[0].SizeType, "A9");
|
|
Assert.AreEqual (0, p.ColumnStyles[0].Width, "A10");
|
|
Assert.AreEqual (SizeType.Percent, p.ColumnStyles[1].SizeType, "A11");
|
|
Assert.AreEqual (20F, p.ColumnStyles[1].Width, "A12");
|
|
}
|
|
|
|
[Test]
|
|
public void TestRowStyles ()
|
|
{
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
|
|
p.RowStyles.Add (new RowStyle ());
|
|
p.RowStyles.Add (new RowStyle (SizeType.Absolute));
|
|
p.RowStyles.Add (new RowStyle (SizeType.Percent, 20F));
|
|
|
|
Assert.AreEqual (3, p.RowStyles.Count, "A1");
|
|
Assert.AreEqual (SizeType.AutoSize, p.RowStyles[0].SizeType, "A2");
|
|
Assert.AreEqual (0, p.RowStyles[0].Height, "A3");
|
|
Assert.AreEqual (SizeType.Absolute, p.RowStyles[1].SizeType, "A4");
|
|
Assert.AreEqual (0, p.RowStyles[1].Height, "A5");
|
|
Assert.AreEqual (SizeType.Percent, p.RowStyles[2].SizeType, "A6");
|
|
Assert.AreEqual (20F, p.RowStyles[2].Height, "A7");
|
|
|
|
p.RowStyles.Remove (p.RowStyles[0]);
|
|
|
|
Assert.AreEqual (2, p.RowStyles.Count, "A8");
|
|
Assert.AreEqual (SizeType.Absolute, p.RowStyles[0].SizeType, "A9");
|
|
Assert.AreEqual (0, p.RowStyles[0].Height, "A10");
|
|
Assert.AreEqual (SizeType.Percent, p.RowStyles[1].SizeType, "A11");
|
|
Assert.AreEqual (20F, p.RowStyles[1].Height, "A12");
|
|
}
|
|
|
|
[Test]
|
|
public void TestColumnStyles3 ()
|
|
{
|
|
// Don't lose the 2nd style
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Absolute, 20F));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Absolute, 20F));
|
|
|
|
p.ColumnCount = 1;
|
|
|
|
Assert.AreEqual (2, p.ColumnStyles.Count, "A1");
|
|
}
|
|
|
|
[Test]
|
|
public void TestColumnStyles2 ()
|
|
{
|
|
// Don't lose the 2nd style
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
|
|
p.ColumnCount = 1;
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Absolute, 20F));
|
|
|
|
p.ColumnCount = 2;
|
|
|
|
Assert.AreEqual (1, p.ColumnStyles.Count, "A2");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning ()
|
|
{
|
|
// Standard Add
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
Control c4 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
p.Controls.Add (c4);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 0), p.GetPositionFromControl (c2), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 1), p.GetPositionFromControl (c3), "C3");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 1), p.GetPositionFromControl (c4), "C4");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning2 ()
|
|
{
|
|
// Growstyle = Add Rows
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
Control c4 = new Button ();
|
|
Control c5 = new Button ();
|
|
Control c6 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
p.Controls.Add (c4);
|
|
p.Controls.Add (c5);
|
|
p.Controls.Add (c6);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 0), p.GetPositionFromControl (c2), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 1), p.GetPositionFromControl (c3), "C3");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 1), p.GetPositionFromControl (c4), "C4");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 2), p.GetPositionFromControl (c5), "C5");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 2), p.GetPositionFromControl (c6), "C6");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning3 ()
|
|
{
|
|
// Growstyle = Add Columns
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
p.GrowStyle = TableLayoutPanelGrowStyle.AddColumns;
|
|
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
Control c4 = new Button ();
|
|
Control c5 = new Button ();
|
|
Control c6 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
p.Controls.Add (c4);
|
|
p.Controls.Add (c5);
|
|
p.Controls.Add (c6);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 0), p.GetPositionFromControl (c2), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (2, 0), p.GetPositionFromControl (c3), "C3");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 1), p.GetPositionFromControl (c4), "C4");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 1), p.GetPositionFromControl (c5), "C5");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (2, 1), p.GetPositionFromControl (c6), "C6");
|
|
}
|
|
|
|
[Test]
|
|
[ExpectedException (typeof (ArgumentException))]
|
|
public void TestCellPositioning4 ()
|
|
{
|
|
// Growstyle = Fixed Size
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
p.GrowStyle = TableLayoutPanelGrowStyle.FixedSize;
|
|
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
Control c4 = new Button ();
|
|
Control c5 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
p.Controls.Add (c4);
|
|
p.Controls.Add (c5);
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning5 ()
|
|
{
|
|
// One control have fixed position
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
Control c4 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.SetCellPosition (c4, new TableLayoutPanelCellPosition (0, 0));
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
p.Controls.Add (c4);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c4), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 0), p.GetPositionFromControl (c1), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 1), p.GetPositionFromControl (c2), "C3");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 1), p.GetPositionFromControl (c3), "C4");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning6 ()
|
|
{
|
|
// One control has fixed column, it should be ignored
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
Control c4 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.SetColumn (c3, 1);
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
p.Controls.Add (c4);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 0), p.GetPositionFromControl (c2), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 1), p.GetPositionFromControl (c3), "C3");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 1), p.GetPositionFromControl (c4), "C4");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning7 ()
|
|
{
|
|
// One control has fixed column and row
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
Control c4 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.SetColumn (c3, 1);
|
|
p.SetRow (c3, 1);
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
p.Controls.Add (c4);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 0), p.GetPositionFromControl (c2), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 1), p.GetPositionFromControl (c3), "C3");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 1), p.GetPositionFromControl (c4), "C4");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning8 ()
|
|
{
|
|
// Column span
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.SetColumnSpan (c1, 2);
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 1), p.GetPositionFromControl (c2), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 1), p.GetPositionFromControl (c3), "C3");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning9 ()
|
|
{
|
|
// Row span
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.SetRowSpan (c1, 2);
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 0), p.GetPositionFromControl (c2), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 1), p.GetPositionFromControl (c3), "C3");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning10 ()
|
|
{
|
|
// Column span = 2, but control is in the last column, forces control back into 1st column, next row
|
|
// I have no clue why c3 shouldn't be in (1,0), but MS says it's not
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.SetColumnSpan (c2, 2);
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 1), p.GetPositionFromControl (c2), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 2), p.GetPositionFromControl (c3), "C3");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning11 ()
|
|
{
|
|
// Row span = 2, but control is in the last row, creates new row
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.SetRowSpan (c3, 2);
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 0), p.GetPositionFromControl (c2), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 1), p.GetPositionFromControl (c3), "C3");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning12 ()
|
|
{
|
|
// Requesting a column greater than ColumnCount, request is ignored
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.SetColumn (c1, 4);
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 0), p.GetPositionFromControl (c2), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 1), p.GetPositionFromControl (c3), "C3");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning13 ()
|
|
{
|
|
// Row span = 2, but control is in the last row, creates new row
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 3;
|
|
p.RowCount = 2;
|
|
|
|
p.SetRowSpan (c3, 2);
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 0), p.GetPositionFromControl (c2), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (2, 0), p.GetPositionFromControl (c3), "C3");
|
|
}
|
|
|
|
[Test]
|
|
[Category ("NotWorking")]
|
|
public void TestCellPositioning14 ()
|
|
{
|
|
// Col span = 3, fixed grow style
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
p.GrowStyle = TableLayoutPanelGrowStyle.FixedSize;
|
|
Control c1 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.SetColumnSpan (c1, 3);
|
|
|
|
p.Controls.Add (c1);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning15 ()
|
|
{
|
|
// Column span = 2, but control is in the last column, forces control back into 1st column, next row
|
|
// I have no clue why c3 shouldn't be in (1,0), but MS says it's not
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.SetColumnSpan (c2, 2);
|
|
p.SetCellPosition (c2, new TableLayoutPanelCellPosition (1, 0));
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 1), p.GetPositionFromControl (c2), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 2), p.GetPositionFromControl (c3), "C3");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning16 ()
|
|
{
|
|
// Row span = 2, but control is in the last row, creates new row
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.SetRowSpan (c3, 2);
|
|
p.SetCellPosition (c3, new TableLayoutPanelCellPosition (0, 1));
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (1, 0), p.GetPositionFromControl (c2), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 1), p.GetPositionFromControl (c3), "C3");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning17 ()
|
|
{
|
|
// ColumnCount == RowCount == 0, but control is added at > 0.
|
|
// The columns and rows are created, but ColumnCount and RowCount remains 0
|
|
//
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
p.ColumnCount = 0;
|
|
p.RowCount = 0;
|
|
Control c1 = new Button ();
|
|
|
|
p.Controls.Add (c1, 6, 7);
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (6, 7), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (0, p.LayoutSettings.ColumnCount, "C2");
|
|
Assert.AreEqual (0, p.LayoutSettings.RowCount, "C3");
|
|
}
|
|
|
|
[Test]
|
|
public void TestCellPositioning18 ()
|
|
{
|
|
// A control with both rowspan and columnspan > 1 was getting
|
|
// other controls put into its extent (i.e. c3 was ending up
|
|
// at (1,1) instead of (2,1).
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
Control c4 = new Button ();
|
|
|
|
p.ColumnCount = 3;
|
|
p.RowCount = 4;
|
|
|
|
p.SetRowSpan (c1, 2);
|
|
p.SetColumnSpan (c1, 2);
|
|
p.SetCellPosition (c1, new TableLayoutPanelCellPosition (0, 0));
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
p.Controls.Add (c4);
|
|
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 0), p.GetPositionFromControl (c1), "C1");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (2, 0), p.GetPositionFromControl (c2), "C2");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (2, 1), p.GetPositionFromControl (c3), "C3");
|
|
Assert.AreEqual (new TableLayoutPanelCellPosition (0, 2), p.GetPositionFromControl (c4), "C4");
|
|
}
|
|
|
|
[Test]
|
|
public void TestRowColumnSizes1 ()
|
|
{
|
|
// Row span = 2, but control is in the last row, creates new row
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 1;
|
|
|
|
p.RowStyles.Add (new RowStyle (SizeType.Percent, 100F));
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (71, p.GetRowHeights ()[0], "D1");
|
|
Assert.AreEqual (29, p.GetRowHeights ()[1], "D2");
|
|
}
|
|
|
|
[Test]
|
|
public void TestRowColumnSizes2 ()
|
|
{
|
|
// Row span = 2, but control is in the last row, creates new row
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 1;
|
|
|
|
p.RowStyles.Add (new RowStyle (SizeType.Absolute, 100F));
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (100, p.GetRowHeights ()[0], "D1");
|
|
Assert.AreEqual (29, p.GetRowHeights ()[1], "D2");
|
|
}
|
|
|
|
[Test]
|
|
public void TestRowColumnSizes3 ()
|
|
{
|
|
// Row span = 2, but control is in the last row, creates new row
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
Control c4 = new Button ();
|
|
Control c5 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 1;
|
|
|
|
p.RowStyles.Add (new RowStyle (SizeType.Percent, 100F));
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
p.Controls.Add (c4);
|
|
p.Controls.Add (c5);
|
|
|
|
Assert.AreEqual (42, p.GetRowHeights ()[0], "D1");
|
|
Assert.AreEqual (29, p.GetRowHeights ()[1], "D2");
|
|
Assert.AreEqual (29, p.GetRowHeights ()[2], "D3");
|
|
}
|
|
|
|
[Test]
|
|
public void TestRowColumnSizes4 ()
|
|
{
|
|
// Row span = 2, but control is in the last row, creates new row
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
Control c4 = new Button ();
|
|
Control c5 = new Button ();
|
|
Control c6 = new Button ();
|
|
Control c7 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 1;
|
|
|
|
p.RowStyles.Add (new RowStyle (SizeType.Percent, 100F));
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
p.Controls.Add (c4);
|
|
p.Controls.Add (c5);
|
|
p.Controls.Add (c6);
|
|
p.Controls.Add (c7);
|
|
|
|
//Assert.AreEqual (100, p.GetRowHeights ()[0], "D1");
|
|
Assert.AreEqual (29, p.GetRowHeights ()[1], "D2");
|
|
Assert.AreEqual (29, p.GetRowHeights ()[2], "D3");
|
|
Assert.AreEqual (29, p.GetRowHeights ()[3], "D4");
|
|
}
|
|
|
|
[Test]
|
|
public void TestRowColumnSizes5 ()
|
|
{
|
|
// 2 Absolute Columns/Rows
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.RowStyles.Add (new RowStyle (SizeType.Absolute, 20));
|
|
p.RowStyles.Add (new RowStyle (SizeType.Absolute, 30));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Absolute, 20));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Absolute, 30));
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (20, p.GetRowHeights ()[0], "D1");
|
|
Assert.AreEqual (80, p.GetRowHeights ()[1], "D2");
|
|
Assert.AreEqual (20, p.GetColumnWidths ()[0], "D3");
|
|
Assert.AreEqual (180, p.GetColumnWidths ()[1], "D4");
|
|
}
|
|
|
|
[Test]
|
|
public void TestRowColumnSizes6 ()
|
|
{
|
|
// 2 50% Columns/Rows
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.RowStyles.Add (new RowStyle (SizeType.Percent, 50));
|
|
p.RowStyles.Add (new RowStyle (SizeType.Percent, 50));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 50));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 50));
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (50, p.GetRowHeights ()[0], "D1");
|
|
Assert.AreEqual (50, p.GetRowHeights ()[1], "D2");
|
|
Assert.AreEqual (100, p.GetColumnWidths ()[0], "D3");
|
|
Assert.AreEqual (100, p.GetColumnWidths ()[1], "D4");
|
|
}
|
|
|
|
[Test]
|
|
public void TestRowColumnSizes7 ()
|
|
{
|
|
// 1 Absolute and 2 Percent Columns/Rows
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 3;
|
|
p.RowCount = 3;
|
|
|
|
p.RowStyles.Add (new RowStyle (SizeType.Absolute, 50));
|
|
p.RowStyles.Add (new RowStyle (SizeType.Percent, 50));
|
|
p.RowStyles.Add (new RowStyle (SizeType.Percent, 50));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Absolute, 50));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 50));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 50));
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (50, p.GetRowHeights ()[0], "D1");
|
|
Assert.AreEqual (25, p.GetRowHeights ()[1], "D2");
|
|
Assert.AreEqual (25, p.GetRowHeights ()[2], "D3");
|
|
Assert.AreEqual (50, p.GetColumnWidths ()[0], "D4");
|
|
Assert.AreEqual (75, p.GetColumnWidths ()[1], "D5");
|
|
Assert.AreEqual (75, p.GetColumnWidths ()[2], "D6");
|
|
}
|
|
|
|
[Test]
|
|
public void TestRowColumnSizes8 ()
|
|
{
|
|
// 1 Absolute and 2 Percent Columns/Rows (with total percents > 100)
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 3;
|
|
p.RowCount = 3;
|
|
|
|
p.RowStyles.Add (new RowStyle (SizeType.Absolute, 50));
|
|
p.RowStyles.Add (new RowStyle (SizeType.Percent, 100));
|
|
p.RowStyles.Add (new RowStyle (SizeType.Percent, 100));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Absolute, 50));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 100));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 100));
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (50, p.GetRowHeights ()[0], "D1");
|
|
Assert.AreEqual (25, p.GetRowHeights ()[1], "D2");
|
|
Assert.AreEqual (25, p.GetRowHeights ()[2], "D3");
|
|
Assert.AreEqual (50, p.GetColumnWidths ()[0], "D4");
|
|
Assert.AreEqual (75, p.GetColumnWidths ()[1], "D5");
|
|
Assert.AreEqual (75, p.GetColumnWidths ()[2], "D6");
|
|
}
|
|
|
|
[Test]
|
|
public void TestRowColumnSizes9 ()
|
|
{
|
|
// 1 Absolute and 2 Percent Columns/Rows (with total percents > 100)
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 3;
|
|
p.RowCount = 3;
|
|
|
|
p.RowStyles.Add (new RowStyle (SizeType.Absolute, 50));
|
|
p.RowStyles.Add (new RowStyle (SizeType.Percent, 80));
|
|
p.RowStyles.Add (new RowStyle (SizeType.Percent, 40));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Absolute, 50));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 80));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 40));
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (50, p.GetRowHeights ()[0], "D1");
|
|
Assert.AreEqual (33, p.GetRowHeights ()[1], "D2");
|
|
Assert.AreEqual (17, p.GetRowHeights ()[2], "D3");
|
|
Assert.AreEqual (50, p.GetColumnWidths ()[0], "D4");
|
|
Assert.AreEqual (100, p.GetColumnWidths ()[1], "D5");
|
|
Assert.AreEqual (50, p.GetColumnWidths ()[2], "D6");
|
|
}
|
|
|
|
[Test]
|
|
public void TestRowColumnSizes10 ()
|
|
{
|
|
// 2 AutoSize Columns/Rows
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
p.ColumnCount = 2;
|
|
p.RowCount = 2;
|
|
|
|
p.RowStyles.Add (new RowStyle (SizeType.AutoSize));
|
|
p.RowStyles.Add (new RowStyle (SizeType.AutoSize));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.AutoSize));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.AutoSize));
|
|
|
|
p.Controls.Add (c1);
|
|
p.Controls.Add (c2);
|
|
p.Controls.Add (c3);
|
|
|
|
Assert.AreEqual (29, p.GetRowHeights ()[0], "D1");
|
|
Assert.AreEqual (71, p.GetRowHeights ()[1], "D2");
|
|
Assert.AreEqual (81, p.GetColumnWidths ()[0], "D3");
|
|
Assert.AreEqual (119, p.GetColumnWidths ()[1], "D4");
|
|
}
|
|
|
|
[Test]
|
|
public void TestRowColumnSizes11 ()
|
|
{
|
|
// AutoSize Columns/Rows, and column-spanning controls, but
|
|
// no control starts in column 1.
|
|
// Mono's old behavior was for column 1 to have a zero width.
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
Control c1 = new Button ();
|
|
Control c2 = new Button ();
|
|
Control c3 = new Button ();
|
|
|
|
c1.Size = new Size (150, 25);
|
|
c2.Size = new Size (75, 25);
|
|
c3.Size = new Size (150, 25);
|
|
|
|
p.ColumnCount = 4;
|
|
p.RowCount = 3;
|
|
|
|
p.RowStyles.Add (new RowStyle (SizeType.AutoSize));
|
|
p.RowStyles.Add (new RowStyle (SizeType.AutoSize));
|
|
p.RowStyles.Add (new RowStyle (SizeType.AutoSize));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.AutoSize));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.AutoSize));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.AutoSize));
|
|
p.ColumnStyles.Add (new ColumnStyle (SizeType.AutoSize));
|
|
|
|
p.SetColumnSpan (c1, 2);
|
|
p.SetColumnSpan (c3, 2);
|
|
|
|
p.Controls.Add (c1, 0, 0);
|
|
p.Controls.Add (c2, 0, 1);
|
|
p.Controls.Add (c3, 1, 1);
|
|
|
|
// The bug fix gets Mono to behave very closely to .NET,
|
|
// but not exactly...3 pixels off somewhere...
|
|
Assert.AreEqual (31, p.GetRowHeights ()[0], "D1");
|
|
Assert.AreEqual (31, p.GetRowHeights ()[1], "D2");
|
|
Assert.AreEqual (81, p.GetColumnWidths ()[0], "D3");
|
|
Assert.LessOrEqual (75, p.GetColumnWidths ()[1], "D4");
|
|
Assert.GreaterOrEqual (78, p.GetColumnWidths ()[1], "D5");
|
|
Assert.LessOrEqual (78, p.GetColumnWidths ()[2], "D6");
|
|
Assert.GreaterOrEqual (81, p.GetColumnWidths ()[2], "D7");
|
|
}
|
|
|
|
[Test]
|
|
public void Bug81843 ()
|
|
{
|
|
Form f = new Form ();
|
|
f.ShowInTaskbar = false;
|
|
|
|
TableLayoutPanel tableLayoutPanel1;
|
|
Button button2;
|
|
TextBox textBox1;
|
|
Button button4;
|
|
|
|
tableLayoutPanel1 = new TableLayoutPanel ();
|
|
button2 = new Button ();
|
|
button4 = new Button ();
|
|
textBox1 = new TextBox ();
|
|
tableLayoutPanel1.SuspendLayout ();
|
|
f.SuspendLayout ();
|
|
|
|
tableLayoutPanel1.AutoSize = true;
|
|
tableLayoutPanel1.ColumnCount = 3;
|
|
tableLayoutPanel1.ColumnStyles.Add (new ColumnStyle ());
|
|
tableLayoutPanel1.ColumnStyles.Add (new ColumnStyle ());
|
|
tableLayoutPanel1.ColumnStyles.Add (new ColumnStyle ());
|
|
tableLayoutPanel1.Controls.Add (button2, 0, 1);
|
|
tableLayoutPanel1.Controls.Add (button4, 2, 1);
|
|
tableLayoutPanel1.Controls.Add (textBox1, 1, 0);
|
|
tableLayoutPanel1.Location = new Point (0, 0);
|
|
tableLayoutPanel1.RowCount = 2;
|
|
tableLayoutPanel1.RowStyles.Add (new RowStyle (SizeType.Percent, 50F));
|
|
tableLayoutPanel1.RowStyles.Add (new RowStyle (SizeType.Percent, 50F));
|
|
tableLayoutPanel1.Size = new Size (292, 287);
|
|
|
|
button2.Size = new Size (75, 23);
|
|
|
|
button4.Size = new Size (75, 23);
|
|
|
|
textBox1.Dock = DockStyle.Fill;
|
|
textBox1.Location = new Point (84, 3);
|
|
textBox1.Multiline = true;
|
|
textBox1.Size = new Size (94, 137);
|
|
|
|
f.ClientSize = new Size (292, 312);
|
|
f.Controls.Add (tableLayoutPanel1);
|
|
f.Name = "Form1";
|
|
f.Text = "Form1";
|
|
tableLayoutPanel1.ResumeLayout (false);
|
|
tableLayoutPanel1.PerformLayout ();
|
|
f.ResumeLayout (false);
|
|
f.PerformLayout ();
|
|
|
|
f.Show ();
|
|
|
|
Assert.AreEqual (new Rectangle (3, 146, 75, 23), button2.Bounds, "A1");
|
|
Assert.AreEqual (new Rectangle (184, 146, 75, 23), button4.Bounds, "A2");
|
|
Assert.AreEqual (new Rectangle (84, 3, 94, 137), textBox1.Bounds, "A3");
|
|
|
|
f.Dispose ();
|
|
}
|
|
|
|
[Test] // From bug #81884
|
|
public void CellBorderStyle ()
|
|
{
|
|
Form f = new Form ();
|
|
f.ShowInTaskbar = false;
|
|
|
|
TableLayoutPanel p = new TableLayoutPanel ();
|
|
p = new TableLayoutPanel ();
|
|
p.ColumnCount = 3;
|
|
p.ColumnStyles.Add (new ColumnStyle ());
|
|
p.ColumnStyles.Add (new ColumnStyle ());
|
|
p.ColumnStyles.Add (new ColumnStyle ());
|
|
p.Dock = DockStyle.Top;
|
|
p.Height = 200;
|
|
p.RowCount = 2;
|
|
p.RowStyles.Add (new RowStyle (SizeType.Percent, 50F));
|
|
p.RowStyles.Add (new RowStyle (SizeType.Percent, 50F));
|
|
f.Controls.Add (p);
|
|
|
|
Label _labelA = new Label ();
|
|
_labelA.Dock = DockStyle.Fill;
|
|
_labelA.Size = new Size (95, 20);
|
|
_labelA.Text = "A";
|
|
p.Controls.Add (_labelA, 0, 0);
|
|
|
|
Label _labelB = new Label ();
|
|
_labelB.Dock = DockStyle.Fill;
|
|
_labelB.Size = new Size (95, 20);
|
|
_labelB.Text = "B";
|
|
p.Controls.Add (_labelB, 1, 0);
|
|
|
|
Label _labelC = new Label ();
|
|
_labelC.Dock = DockStyle.Fill;
|
|
_labelC.Size = new Size (95, 20);
|
|
_labelC.Text = "C";
|
|
p.Controls.Add (_labelC, 2, 0);
|
|
|
|
Label _labelD = new Label ();
|
|
_labelD.Dock = DockStyle.Fill;
|
|
_labelD.Size = new Size (95, 20);
|
|
_labelD.Text = "D";
|
|
p.Controls.Add (_labelD, 0, 1);
|
|
|
|
Label _labelE = new Label ();
|
|
_labelE.Dock = DockStyle.Fill;
|
|
_labelE.Size = new Size (95, 20);
|
|
_labelE.Text = "E";
|
|
p.Controls.Add (_labelE, 1, 1);
|
|
|
|
Label _labelF = new Label ();
|
|
_labelF.Dock = DockStyle.Fill;
|
|
_labelF.Size = new Size (95, 20);
|
|
_labelF.Text = "F";
|
|
p.Controls.Add (_labelF, 2, 1);
|
|
|
|
_labelA.BackColor = Color.Red;
|
|
_labelB.BackColor = Color.Orange;
|
|
_labelC.BackColor = Color.Yellow;
|
|
_labelD.BackColor = Color.Green;
|
|
_labelE.BackColor = Color.Blue;
|
|
_labelF.BackColor = Color.Purple;
|
|
|
|
f.Show ();
|
|
// None
|
|
Assert.AreEqual (new Rectangle (3, 0, 95, 100), _labelA.Bounds, "A1");
|
|
Assert.AreEqual (new Rectangle (104, 0, 95, 100), _labelB.Bounds, "A2");
|
|
Assert.AreEqual (new Rectangle (205, 0, 95, 100), _labelC.Bounds, "A3");
|
|
Assert.AreEqual (new Rectangle (3, 100, 95, 100), _labelD.Bounds, "A4");
|
|
Assert.AreEqual (new Rectangle (104, 100, 95, 100), _labelE.Bounds, "A5");
|
|
Assert.AreEqual (new Rectangle (205, 100, 95, 100), _labelF.Bounds, "A6");
|
|
|
|
p.CellBorderStyle = TableLayoutPanelCellBorderStyle.Single;
|
|
Assert.AreEqual (new Rectangle (4, 1, 95, 98), _labelA.Bounds, "A7");
|
|
Assert.AreEqual (new Rectangle (106, 1, 95, 98), _labelB.Bounds, "A8");
|
|
Assert.AreEqual (new Rectangle (208, 1, 95, 98), _labelC.Bounds, "A9");
|
|
Assert.AreEqual (new Rectangle (4, 100, 95, 99), _labelD.Bounds, "A10");
|
|
Assert.AreEqual (new Rectangle (106, 100, 95, 99), _labelE.Bounds, "A11");
|
|
Assert.AreEqual (new Rectangle (208, 100, 95, 99), _labelF.Bounds, "A12");
|
|
|
|
p.CellBorderStyle = TableLayoutPanelCellBorderStyle.Inset;
|
|
Assert.AreEqual (new Rectangle (5, 2, 95, 97), _labelA.Bounds, "A13");
|
|
Assert.AreEqual (new Rectangle (108, 2, 95, 97), _labelB.Bounds, "A14");
|
|
Assert.AreEqual (new Rectangle (211, 2, 95, 97), _labelC.Bounds, "A15");
|
|
Assert.AreEqual (new Rectangle (5, 101, 95, 97), _labelD.Bounds, "A16");
|
|
Assert.AreEqual (new Rectangle (108, 101, 95, 97), _labelE.Bounds, "A17");
|
|
Assert.AreEqual (new Rectangle (211, 101, 95, 97), _labelF.Bounds, "A18");
|
|
|
|
p.CellBorderStyle = TableLayoutPanelCellBorderStyle.InsetDouble;
|
|
Assert.AreEqual (new Rectangle (6, 3, 95, 95), _labelA.Bounds, "A19");
|
|
Assert.AreEqual (new Rectangle (110, 3, 95, 95), _labelB.Bounds, "A20");
|
|
Assert.AreEqual (new Rectangle (214, 3, 95, 95), _labelC.Bounds, "A21");
|
|
Assert.AreEqual (new Rectangle (6, 101, 95, 96), _labelD.Bounds, "A22");
|
|
Assert.AreEqual (new Rectangle (110, 101, 95, 96), _labelE.Bounds, "A23");
|
|
Assert.AreEqual (new Rectangle (214, 101, 95, 96), _labelF.Bounds, "A24");
|
|
|
|
p.CellBorderStyle = TableLayoutPanelCellBorderStyle.Outset;
|
|
Assert.AreEqual (new Rectangle (5, 2, 95, 97), _labelA.Bounds, "A25");
|
|
Assert.AreEqual (new Rectangle (108, 2, 95, 97), _labelB.Bounds, "A26");
|
|
Assert.AreEqual (new Rectangle (211, 2, 95, 97), _labelC.Bounds, "A27");
|
|
Assert.AreEqual (new Rectangle (5, 101, 95, 97), _labelD.Bounds, "A28");
|
|
Assert.AreEqual (new Rectangle (108, 101, 95, 97), _labelE.Bounds, "A29");
|
|
Assert.AreEqual (new Rectangle (211, 101, 95, 97), _labelF.Bounds, "A30");
|
|
|
|
p.CellBorderStyle = TableLayoutPanelCellBorderStyle.OutsetDouble;
|
|
Assert.AreEqual (new Rectangle (6, 3, 95, 95), _labelA.Bounds, "A31");
|
|
Assert.AreEqual (new Rectangle (110, 3, 95, 95), _labelB.Bounds, "A32");
|
|
Assert.AreEqual (new Rectangle (214, 3, 95, 95), _labelC.Bounds, "A33");
|
|
Assert.AreEqual (new Rectangle (6, 101, 95, 96), _labelD.Bounds, "A34");
|
|
Assert.AreEqual (new Rectangle (110, 101, 95, 96), _labelE.Bounds, "A35");
|
|
Assert.AreEqual (new Rectangle (214, 101, 95, 96), _labelF.Bounds, "A36");
|
|
|
|
p.CellBorderStyle = TableLayoutPanelCellBorderStyle.OutsetPartial;
|
|
Assert.AreEqual (new Rectangle (6, 3, 95, 95), _labelA.Bounds, "A37");
|
|
Assert.AreEqual (new Rectangle (110, 3, 95, 95), _labelB.Bounds, "A38");
|
|
Assert.AreEqual (new Rectangle (214, 3, 95, 95), _labelC.Bounds, "A39");
|
|
Assert.AreEqual (new Rectangle (6, 101, 95, 96), _labelD.Bounds, "A40");
|
|
Assert.AreEqual (new Rectangle (110, 101, 95, 96), _labelE.Bounds, "A41");
|
|
Assert.AreEqual (new Rectangle (214, 101, 95, 96), _labelF.Bounds, "A42");
|
|
|
|
f.Close ();
|
|
}
|
|
|
|
[Test]
|
|
public void Bug81936 ()
|
|
{
|
|
Form f = new Form ();
|
|
f.ShowInTaskbar = false;
|
|
|
|
TableLayoutPanel tableLayoutPanel1;
|
|
Label button2;
|
|
Label button4;
|
|
|
|
tableLayoutPanel1 = new TableLayoutPanel ();
|
|
button2 = new Label ();
|
|
button4 = new Label ();
|
|
button2.Text = "Test1";
|
|
button4.Text = "Test2";
|
|
button2.Anchor = AnchorStyles.Left;
|
|
button4.Anchor = AnchorStyles.Left;
|
|
button2.Height = 14;
|
|
button4.Height = 14;
|
|
tableLayoutPanel1.SuspendLayout ();
|
|
f.SuspendLayout ();
|
|
|
|
tableLayoutPanel1.ColumnCount = 1;
|
|
tableLayoutPanel1.ColumnStyles.Add (new ColumnStyle ());
|
|
tableLayoutPanel1.Controls.Add (button2, 0, 0);
|
|
tableLayoutPanel1.Controls.Add (button4, 0, 1);
|
|
tableLayoutPanel1.Location = new Point (0, 0);
|
|
tableLayoutPanel1.RowCount = 2;
|
|
tableLayoutPanel1.RowStyles.Add (new RowStyle (SizeType.Absolute, 28F));
|
|
tableLayoutPanel1.RowStyles.Add (new RowStyle (SizeType.Absolute, 28F));
|
|
tableLayoutPanel1.Size = new Size (292, 56);
|
|
|
|
f.ClientSize = new Size (292, 312);
|
|
f.Controls.Add (tableLayoutPanel1);
|
|
f.Name = "Form1";
|
|
f.Text = "Form1";
|
|
tableLayoutPanel1.ResumeLayout (false);
|
|
tableLayoutPanel1.PerformLayout ();
|
|
f.ResumeLayout (false);
|
|
f.PerformLayout ();
|
|
|
|
f.Show ();
|
|
|
|
Assert.AreEqual (new Rectangle (3, 7, 100, 14), button2.Bounds, "A1");
|
|
Assert.AreEqual (new Rectangle (3, 35, 100, 14), button4.Bounds, "A2");
|
|
|
|
f.Dispose ();
|
|
}
|
|
|
|
[Test]
|
|
public void Bug82605 ()
|
|
{
|
|
Form f = new Form ();
|
|
f.ShowInTaskbar = false;
|
|
|
|
Label l = new Label ();
|
|
|
|
TableLayoutPanel table = new TableLayoutPanel ();
|
|
table.ColumnCount = 1;
|
|
table.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 100F));
|
|
|
|
table.RowCount = 2;
|
|
table.RowStyles.Add (new RowStyle (SizeType.Percent, 100F));
|
|
table.RowStyles.Add (new RowStyle (SizeType.Absolute, 20F));
|
|
|
|
table.Controls.Add (l, 0, 1);
|
|
table.Location = new Point (0, 0);
|
|
table.Width = 250;
|
|
|
|
l.Anchor = AnchorStyles.Left | AnchorStyles.Right;
|
|
l.AutoSize = true;
|
|
l.Location = new Point (3, 352);
|
|
l.Size = new Size (578, 13);
|
|
l.Text = "label1";
|
|
l.TextAlign = ContentAlignment.MiddleCenter;
|
|
|
|
f.Controls.Add (table);
|
|
f.Show ();
|
|
|
|
// Height is font dependent, but this bug is about the width anyways
|
|
Assert.AreEqual (244, l.Width, "A1");
|
|
|
|
f.Dispose ();
|
|
}
|
|
|
|
[Test] // bug #82040
|
|
public void ShowNoChildren ()
|
|
{
|
|
Form form = new Form ();
|
|
form.ShowInTaskbar = false;
|
|
|
|
TableLayoutPanel tableLayoutPanel = new TableLayoutPanel ();
|
|
tableLayoutPanel.ColumnCount = 3;
|
|
tableLayoutPanel.Dock = DockStyle.Fill;
|
|
tableLayoutPanel.RowCount = 11;
|
|
form.Controls.Add (tableLayoutPanel);
|
|
|
|
form.Show ();
|
|
form.Refresh ();
|
|
form.Dispose ();
|
|
}
|
|
|
|
[Test] // bug #82041
|
|
public void DontCallResumeLayout ()
|
|
{
|
|
Form form = new Form ();
|
|
form.ShowInTaskbar = false;
|
|
|
|
TableLayoutPanel tableLayoutPanel = new TableLayoutPanel ();
|
|
form.Controls.Add (tableLayoutPanel);
|
|
tableLayoutPanel.SuspendLayout ();
|
|
tableLayoutPanel.ColumnCount = 3;
|
|
tableLayoutPanel.Dock = DockStyle.Fill;
|
|
tableLayoutPanel.RowCount = 11;
|
|
tableLayoutPanel.Controls.Add (new Button ());
|
|
|
|
form.Show ();
|
|
form.Refresh ();
|
|
form.Dispose ();
|
|
}
|
|
|
|
[Test] // bug #346246
|
|
public void AutoSizePanelVertical ()
|
|
{
|
|
Form f = new Form ();
|
|
f.ShowInTaskbar = false;
|
|
|
|
TableLayoutPanel tlp = new TableLayoutPanel ();
|
|
tlp.AutoSize = true;
|
|
tlp.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
tlp.ColumnCount = 1;
|
|
tlp.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 100F));
|
|
tlp.Location = new Point (12, 12);
|
|
tlp.Name = "tableLayoutPanel1";
|
|
tlp.RowCount = 2;
|
|
tlp.RowStyles.Add (new RowStyle (SizeType.Percent, 50F));
|
|
tlp.RowStyles.Add (new RowStyle (SizeType.Percent, 50F));
|
|
tlp.Size = new Size (139, 182);
|
|
tlp.TabIndex = 0;
|
|
|
|
f.Controls.Add (tlp);
|
|
|
|
Button b = new Button ();
|
|
b.Size = new Size (100, 100);
|
|
tlp.Controls.Add (b, 0, 0);
|
|
|
|
PictureBox p = new PictureBox ();
|
|
p.Size = new Size (100, 100);
|
|
tlp.Controls.Add (p,0,1);
|
|
|
|
f.Show ();
|
|
|
|
Assert.AreEqual (new Rectangle (12, 12, 106, 212), tlp.Bounds, "A1");
|
|
Assert.AreEqual (new Rectangle (3, 3, 100, 100), b.Bounds, "A2");
|
|
Assert.AreEqual (new Rectangle (3, 109, 100, 100), p.Bounds, "A3");
|
|
|
|
b.Width += 20;
|
|
b.Height += 20;
|
|
|
|
Assert.AreEqual (new Rectangle (12, 12, 126, 252), tlp.Bounds, "B1");
|
|
Assert.AreEqual (new Rectangle (3, 3, 120, 120), b.Bounds, "B2");
|
|
Assert.AreEqual (new Rectangle (3, 129, 100, 100), p.Bounds, "B3");
|
|
|
|
p.Width += 20;
|
|
p.Height += 20;
|
|
|
|
Assert.AreEqual (new Rectangle (12, 12, 126, 252), tlp.Bounds, "C1");
|
|
Assert.AreEqual (new Rectangle (3, 3, 120, 120), b.Bounds, "C2");
|
|
Assert.AreEqual (new Rectangle (3, 129, 120, 120), p.Bounds, "C3");
|
|
|
|
f.Dispose ();
|
|
}
|
|
|
|
[Test] // bug #346246
|
|
public void AutoSizePanelHorizontal ()
|
|
{
|
|
Form f = new Form ();
|
|
f.ShowInTaskbar = false;
|
|
|
|
TableLayoutPanel tlp = new TableLayoutPanel ();
|
|
tlp.AutoSize = true;
|
|
tlp.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
tlp.ColumnCount = 2;
|
|
tlp.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 50F));
|
|
tlp.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 50F));
|
|
tlp.Location = new Point (12, 12);
|
|
tlp.Name = "tableLayoutPanel1";
|
|
tlp.RowCount = 1;
|
|
tlp.RowStyles.Add (new RowStyle (SizeType.Percent, 100F));
|
|
tlp.Size = new Size (139, 182);
|
|
tlp.TabIndex = 0;
|
|
|
|
f.Controls.Add (tlp);
|
|
|
|
Button b = new Button ();
|
|
b.Size = new Size (100, 100);
|
|
tlp.Controls.Add (b, 0, 0);
|
|
|
|
PictureBox p = new PictureBox ();
|
|
p.Size = new Size (100, 100);
|
|
tlp.Controls.Add (p, 1, 0);
|
|
|
|
f.Show ();
|
|
|
|
Assert.AreEqual (new Rectangle (12, 12, 212, 106), tlp.Bounds, "A1");
|
|
Assert.AreEqual (new Rectangle (3, 3, 100, 100), b.Bounds, "A2");
|
|
Assert.AreEqual (new Rectangle (109, 3, 100, 100), p.Bounds, "A3");
|
|
|
|
b.Width += 20;
|
|
b.Height += 20;
|
|
|
|
Assert.AreEqual (new Rectangle (12, 12, 252, 126), tlp.Bounds, "B1");
|
|
Assert.AreEqual (new Rectangle (3, 3, 120, 120), b.Bounds, "B2");
|
|
Assert.AreEqual (new Rectangle (129, 3, 100, 100), p.Bounds, "B3");
|
|
|
|
p.Width += 20;
|
|
p.Height += 20;
|
|
|
|
Assert.AreEqual (new Rectangle (12, 12, 252, 126), tlp.Bounds, "C1");
|
|
Assert.AreEqual (new Rectangle (3, 3, 120, 120), b.Bounds, "C2");
|
|
Assert.AreEqual (new Rectangle (129, 3, 120, 120), p.Bounds, "C3");
|
|
|
|
f.Dispose ();
|
|
}
|
|
|
|
[Test]
|
|
public void Bug354676 ()
|
|
{
|
|
Form f = new Form ();
|
|
|
|
TableLayoutPanel tlp = new TableLayoutPanel ();
|
|
tlp.Dock = DockStyle.Fill;
|
|
tlp.Padding = new Padding (40);
|
|
tlp.RowCount = 2;
|
|
tlp.ColumnCount = 1;
|
|
f.Controls.Add (tlp);
|
|
|
|
Button b1 = new Button ();
|
|
tlp.Controls.Add (b1);
|
|
|
|
Button b2 = new Button ();
|
|
tlp.Controls.Add (b2);
|
|
|
|
f.Show ();
|
|
|
|
Assert.AreEqual (new Rectangle (43, 43, 75, 23), b1.Bounds, "A1");
|
|
Assert.AreEqual (new Rectangle (43, 72, 75, 23), b2.Bounds, "A2");
|
|
|
|
f.Close ();
|
|
f.Dispose ();
|
|
}
|
|
|
|
[Test]
|
|
public void Bug355408 ()
|
|
{
|
|
Form f = new Form ();
|
|
f.ClientSize = new Size (300, 300);
|
|
|
|
TableLayoutPanel tlp = new TableLayoutPanel ();
|
|
tlp.Dock = DockStyle.Fill;
|
|
tlp.RowCount = 2;
|
|
tlp.ColumnCount = 2;
|
|
f.Controls.Add (tlp);
|
|
|
|
Button b1 = new Button ();
|
|
tlp.Controls.Add (b1);
|
|
|
|
Button b2 = new Button ();
|
|
tlp.Controls.Add (b2);
|
|
|
|
Button b3 = new Button ();
|
|
b3.Dock = DockStyle.Fill;
|
|
b3.Width = 250;
|
|
tlp.SetColumnSpan (b3, 2);
|
|
tlp.Controls.Add (b3);
|
|
|
|
f.Show ();
|
|
|
|
Assert.AreEqual (new Rectangle (3, 3, 75, 23), b1.Bounds, "A1");
|
|
Assert.AreEqual (new Rectangle (84, 3, 75, 23), b2.Bounds, "A2");
|
|
Assert.AreEqual (new Rectangle (3, 32, 294, 265), b3.Bounds, "A3");
|
|
|
|
f.Close ();
|
|
f.Dispose ();
|
|
}
|
|
|
|
[Test]
|
|
public void Bug402651 ()
|
|
{
|
|
Form f = new Form ();
|
|
f.ClientSize = new Size (300, 300);
|
|
|
|
TableLayoutPanel tlp = new TableLayoutPanel ();
|
|
tlp.Dock = DockStyle.Fill;
|
|
tlp.RowCount = 2;
|
|
tlp.RowStyles.Add (new RowStyle (SizeType.Percent, 100F));
|
|
tlp.RowStyles.Add (new RowStyle (SizeType.AutoSize));
|
|
f.Controls.Add (tlp);
|
|
|
|
Button b1 = new Button ();
|
|
b1.Text = String.Empty;
|
|
b1.Dock = DockStyle.Fill;
|
|
tlp.Controls.Add (b1, 0, 0);
|
|
|
|
Button b2 = new Button ();
|
|
b2.Text = String.Empty;
|
|
b2.Size = new Size (100, 100);
|
|
b2.Anchor = AnchorStyles.None;
|
|
b2.Dock = DockStyle.None;
|
|
b2.Visible = false;
|
|
tlp.Controls.Add (b2, 0, 1);
|
|
|
|
f.Show ();
|
|
|
|
b2.Visible = true;
|
|
Assert.AreEqual (new Size (100, 100), b2.Size, "A1");
|
|
|
|
b2.Visible = false;
|
|
b2.Anchor = AnchorStyles.Left;
|
|
b2.Visible = true;
|
|
Assert.AreEqual (new Size (100, 100), b2.Size, "A2");
|
|
|
|
f.Dispose ();
|
|
}
|
|
|
|
[Test]
|
|
public void Bug354672 ()
|
|
{
|
|
Form f = new Form ();
|
|
f.ClientSize = new Size (300, 300);
|
|
|
|
TableLayoutPanel tlp = new TableLayoutPanel ();
|
|
tlp.AutoSize = true;
|
|
tlp.ColumnCount = 2;
|
|
tlp.RowCount = 1;
|
|
f.Controls.Add (tlp);
|
|
|
|
TextBox t1 = new TextBox ();
|
|
t1.Dock = DockStyle.Fill;
|
|
tlp.Controls.Add (t1);
|
|
|
|
TextBox t2 = new TextBox ();
|
|
t2.Dock = DockStyle.Fill;
|
|
tlp.Controls.Add (t2);
|
|
|
|
Assert.AreEqual (new Size (212, t1.Height + 6), tlp.PreferredSize, "A1");
|
|
|
|
f.Dispose ();
|
|
}
|
|
|
|
[Test]
|
|
public void Bug354672More ()
|
|
{
|
|
Form f = new Form ();
|
|
f.ClientSize = new Size (300, 300);
|
|
|
|
TableLayoutPanel tlp = new TableLayoutPanel ();
|
|
tlp.AutoSize = true;
|
|
tlp.ColumnCount = 2;
|
|
tlp.RowCount = 1;
|
|
tlp.ColumnStyles.Add (new ColumnStyle (SizeType.AutoSize));
|
|
tlp.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 50f));
|
|
|
|
f.Controls.Add (tlp);
|
|
|
|
TextBox t1 = new TextBox ();
|
|
t1.Dock = DockStyle.Fill;
|
|
tlp.Controls.Add (t1);
|
|
|
|
TextBox t2 = new TextBox ();
|
|
t2.Dock = DockStyle.Fill;
|
|
tlp.Controls.Add (t2);
|
|
|
|
Assert.AreEqual (new Size (212, t1.Height + 6), tlp.PreferredSize, "A1");
|
|
|
|
f.Dispose ();
|
|
}
|
|
|
|
[Test]
|
|
public void Bug367249 ()
|
|
{
|
|
// Setting a colspan greater than the number of columns was
|
|
// causing an IOORE, this test just should not exception
|
|
TableLayoutPanel LayoutPanel = new TableLayoutPanel ();
|
|
LayoutPanel.ColumnCount = 1;
|
|
LayoutPanel.RowCount = 2;
|
|
|
|
Button OkButton = new Button ();
|
|
OkButton.Text = "OK";
|
|
LayoutPanel.Controls.Add (OkButton);
|
|
LayoutPanel.SetColumnSpan (OkButton, 3);
|
|
}
|
|
|
|
[Test]
|
|
public void Bug396141 ()
|
|
{
|
|
// The issue is the user has set the RowCount to 0, but after
|
|
// we arrange the controls, we have 1 row. GetPreferredSize (for
|
|
// AutoSize) was using 0 instead of 1.
|
|
|
|
Form f = new Form ();
|
|
f.ClientSize = new Size (300, 300);
|
|
f.ShowInTaskbar = false;
|
|
|
|
TableLayoutPanel tlp = new TableLayoutPanel ();
|
|
tlp.AutoSize = true;
|
|
tlp.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
tlp.ColumnCount = 2;
|
|
tlp.RowCount = 0;
|
|
|
|
f.Controls.Add (tlp);
|
|
|
|
TextBox t1 = new TextBox ();
|
|
t1.Dock = DockStyle.Fill;
|
|
tlp.Controls.Add (t1);
|
|
|
|
TextBox t2 = new TextBox ();
|
|
t2.Dock = DockStyle.Fill;
|
|
tlp.Controls.Add (t2);
|
|
|
|
f.Show ();
|
|
|
|
Assert.IsTrue (tlp.Height > 0, "Height must be > 0");
|
|
Assert.IsTrue (tlp.Width > 0, "Width must be > 0");
|
|
|
|
f.Dispose ();
|
|
}
|
|
|
|
[Test]
|
|
public void Bug396433 ()
|
|
{
|
|
// We were not taking the CellBorderStyle into account when calculating
|
|
// the preferred size.
|
|
Form f = new Form ();
|
|
f.ClientSize = new Size (300, 300);
|
|
f.ShowInTaskbar = false;
|
|
|
|
TableLayoutPanel tlp = new TableLayoutPanel ();
|
|
tlp.AutoSize = true;
|
|
tlp.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
tlp.ColumnCount = 2;
|
|
tlp.RowCount = 1;
|
|
|
|
f.Controls.Add (tlp);
|
|
|
|
Button t1 = new Button ();
|
|
tlp.Controls.Add (t1);
|
|
|
|
Button t2 = new Button ();
|
|
tlp.Controls.Add (t2);
|
|
|
|
f.Show ();
|
|
|
|
Assert.AreEqual (new Size (162, 29), tlp.PreferredSize, "A1");
|
|
|
|
tlp.CellBorderStyle = TableLayoutPanelCellBorderStyle.Single;
|
|
|
|
Assert.AreEqual (new Size (165, 31), tlp.PreferredSize, "A2");
|
|
|
|
f.Dispose ();
|
|
}
|
|
|
|
[Test]
|
|
public void IgnoreAutoSizeMode ()
|
|
{
|
|
// It would seem that AutoSizeMode for a TableLayoutPanel is always
|
|
// treated as GrowAndShrink
|
|
Form f = new Form ();
|
|
f.ClientSize = new Size (300, 300);
|
|
f.ShowInTaskbar = false;
|
|
|
|
TableLayoutPanel tlp = new TableLayoutPanel ();
|
|
tlp.AutoSize = true;
|
|
tlp.Dock = DockStyle.Top;
|
|
tlp.ColumnCount = 1;
|
|
tlp.RowCount = 1;
|
|
|
|
f.Controls.Add (tlp);
|
|
|
|
Button t1 = new Button ();
|
|
tlp.Controls.Add (t1);
|
|
|
|
f.Show ();
|
|
|
|
Assert.AreEqual (29, tlp.Height, "A1");
|
|
|
|
tlp.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
|
|
Assert.AreEqual (29, tlp.Height, "A2");
|
|
|
|
f.Dispose ();
|
|
}
|
|
|
|
[Test]
|
|
public void TestTableLayoutStyleOwned ()
|
|
{
|
|
try {
|
|
ColumnStyle style = new ColumnStyle ();
|
|
TableLayoutColumnStyleCollection coll = new TableLayoutPanel ().ColumnStyles;
|
|
coll.Add (style);
|
|
TableLayoutColumnStyleCollection coll2 = new TableLayoutPanel ().ColumnStyles;
|
|
coll2.Add (style);
|
|
Assert.Fail ("#1");
|
|
} catch (ArgumentException ex) {
|
|
// PASS
|
|
}
|
|
|
|
try {
|
|
RowStyle style = new RowStyle ();
|
|
TableLayoutRowStyleCollection coll = new TableLayoutPanel ().RowStyles;
|
|
coll.Add (style);
|
|
TableLayoutRowStyleCollection coll2 = new TableLayoutPanel ().RowStyles;
|
|
coll2.Add (style);
|
|
Assert.Fail ("#2");
|
|
} catch (ArgumentException ex) {
|
|
// PASS
|
|
}
|
|
}
|
|
|
|
[Test] // Novell bug #497562
|
|
public void TestLayoutSettingsSetter ()
|
|
{
|
|
using (var tlp = new TableLayoutPanel ()) {
|
|
TableLayoutSettings tls;
|
|
|
|
using (var ms = new MemoryStream ()) {
|
|
var formatter = new BinaryFormatter ();
|
|
formatter.Serialize (ms, tlp.LayoutSettings);
|
|
|
|
ms.Position = 0;
|
|
|
|
tls = (TableLayoutSettings) formatter.Deserialize (ms);
|
|
}
|
|
|
|
tlp.LayoutSettings = tls;
|
|
tlp.LayoutSettings = tls; // Should not throw an exception
|
|
}
|
|
}
|
|
|
|
[Test]
|
|
public void XamarinBug18638 ()
|
|
{
|
|
// Spanning items should not have their entire width assigned to the first column in the span.
|
|
TableLayoutPanel tlp = new TableLayoutPanel ();
|
|
tlp.SuspendLayout ();
|
|
tlp.Size = new Size(291, 100);
|
|
tlp.AutoSize = true;
|
|
tlp.ColumnStyles.Add (new ColumnStyle (SizeType.Absolute, 60));
|
|
tlp.ColumnStyles.Add (new ColumnStyle (SizeType.Percent, 100));
|
|
tlp.ColumnStyles.Add (new ColumnStyle (SizeType.Absolute, 45));
|
|
tlp.ColumnCount = 3;
|
|
tlp.RowStyles.Add (new RowStyle (SizeType.AutoSize));
|
|
var label1 = new Label {AutoSize = true, Text = @"This line spans all three columns in the table!"};
|
|
tlp.Controls.Add (label1, 0, 0);
|
|
tlp.SetColumnSpan (label1, 3);
|
|
tlp.RowStyles.Add (new RowStyle (SizeType.AutoSize));
|
|
tlp.RowCount = 1;
|
|
var label2 = new Label {AutoSize = true, Text = @"This line spans columns two and three."};
|
|
tlp.Controls.Add (label2, 1, 1);
|
|
tlp.SetColumnSpan (label2, 2);
|
|
tlp.RowCount = 2;
|
|
AddTableRow (tlp, "First Row", "This is a test");
|
|
AddTableRow (tlp, "Row 2", "This is another test");
|
|
tlp.ResumeLayout ();
|
|
|
|
var widths = tlp.GetColumnWidths ();
|
|
Assert.AreEqual (4, tlp.RowCount, "X18638-1");
|
|
Assert.AreEqual (3, tlp.ColumnCount, "X18638-2");
|
|
Assert.AreEqual (60, widths[0], "X18638-3");
|
|
Assert.Greater (label2.Width, widths[1], "X18638-5");
|
|
Assert.AreEqual (45, widths[2], "X18638-4");
|
|
}
|
|
|
|
private void AddTableRow(TableLayoutPanel tlp, string label, string text)
|
|
{
|
|
tlp.SuspendLayout ();
|
|
int row = tlp.RowCount;
|
|
tlp.RowStyles.Add (new RowStyle (SizeType.AutoSize));
|
|
var first = new Label {AutoSize = true, Dock = DockStyle.Fill, Text = label};
|
|
tlp.Controls.Add (first, 0, row);
|
|
var second = new TextBox {AutoSize = true, Text = text, Dock = DockStyle.Fill, Multiline = true};
|
|
tlp.Controls.Add (second, 1, row);
|
|
var third = new Button {Text = @"DEL", Dock = DockStyle.Fill};
|
|
tlp.Controls.Add (third, 2, row);
|
|
tlp.RowCount = row + 1;
|
|
tlp.ResumeLayout ();
|
|
}
|
|
}
|
|
}
|