Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Boswell II <ulatekh@yahoo.com>2012-07-24 22:11:23 +0400
committerThomas Goldstein <stifu@free.fr>2012-07-24 22:14:25 +0400
commit55848244bb5b071250d42ace90864f9947e03e35 (patch)
tree4251bed5fc6892889c181f70b5adc564b6ac2902 /mcs/class/Managed.Windows.Forms/Test
parentccd53a905ee07e1800585704e9d6f58dd83e7387 (diff)
Properly fill in the whole TableLayoutPanel with dummy controls
Diffstat (limited to 'mcs/class/Managed.Windows.Forms/Test')
-rw-r--r--mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/TableLayoutTest.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/TableLayoutTest.cs b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/TableLayoutTest.cs
index 7e9edf097f3..6f591d23de5 100644
--- a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/TableLayoutTest.cs
+++ b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/TableLayoutTest.cs
@@ -601,6 +601,36 @@ namespace MonoTests.System.Windows.Forms
}
[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