コード例 #1
0
ファイル: InlineCSS.xaml.cs プロジェクト: josephwambura/maui
            public void InitialValue(bool useCompiledXaml)
            {
                var layout = new InlineCSS(useCompiledXaml);

                Assert.That(layout.BackgroundColor, Is.EqualTo(Colors.Green));
                Assert.That(layout.stack.BackgroundColor, Is.EqualTo(Colors.Green));
                Assert.That(layout.button.BackgroundColor, Is.EqualTo(Colors.Green));
                Assert.That(layout.label.BackgroundColor, Is.EqualTo(VisualElement.BackgroundColorProperty.DefaultValue));
                Assert.That(layout.label.TextTransform, Is.EqualTo(TextTransform.Uppercase));
            }
コード例 #2
0
ファイル: InlineCSS.xaml.cs プロジェクト: josephwambura/maui
            public void InlineCSSParsed(bool useCompiledXaml)
            {
                var layout = new InlineCSS(useCompiledXaml);

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