Change-Id: Ifedaf1c1e03a4ed560d9810d708cd9813d0095d9
LogUtils.Write(LogUtils.DEBUG, LogUtils.TAG, "CreatePanes");
_panes = new Panes(_window);
+ Rectangle redBox = new Rectangle(_window)
+ {
+ AlignmentX = -1,
+ AlignmentY = -1,
+ WeightX = 1,
+ WeightY = 1,
+ Color = Color.Red,
+ };
+ redBox.Show();
+
+ Rectangle blueBox = new Rectangle(_window)
+ {
+ AlignmentX = -1,
+ AlignmentY = -1,
+ WeightX = 1,
+ WeightY = 1,
+ Color = Color.Blue,
+ };
+
+ _panes.SetPartContent("left", redBox);
+ _panes.SetPartContent("right", blueBox);
+
_testPage.ExecuteTCByPage(_panes);
}