using Annulus; using Azimuth; namespace Glass.Testbed { public class AgeTestCase : TestCase { public AgeTestCase(string name) : base(name) { } protected override void Populate() { AddCaption("Cycles with its own age, and pauses while another case is shown"); Rect swatchRow = ContentAggregator.NewRow(48); var swatch = NewChild("rainbow"); swatch.Material = new RainbowMaterial(); swatch.Bounds = swatchRow.NewCol(168); } } }