Exemple #1
0
            public void InitialValue(bool useCompiledXaml)
            {
                var layout = new InlineCSS(useCompiledXaml);

                Assert.That(layout.BackgroundColor, Is.EqualTo(Color.Green));
                Assert.That(layout.stack.BackgroundColor, Is.EqualTo(Color.Green));
                Assert.That(layout.button.BackgroundColor, Is.EqualTo(Color.Green));
                Assert.That(layout.label.BackgroundColor, Is.EqualTo(VisualElement.BackgroundColorProperty.DefaultValue));
                Assert.That(layout.label.TextTransform, Is.EqualTo(TextTransform.Uppercase));
            }
Exemple #2
0
            public void InlineCSSParsed(bool useCompiledXaml)
            {
                var layout = new InlineCSS(useCompiledXaml);

                Assert.That(layout.label.TextColor, Is.EqualTo(Color.Pink));
            }