csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
613 lines
22 KiB
613 lines
22 KiB
using System;
|
|
using System.Linq;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Controls.Presenters;
|
|
using Avalonia.Controls.Templates;
|
|
using Avalonia.Media;
|
|
using Avalonia.Styling;
|
|
using Avalonia.UnitTests;
|
|
using Avalonia.VisualTree;
|
|
using Xunit;
|
|
|
|
namespace Avalonia.Markup.Xaml.UnitTests.MarkupExtensions
|
|
{
|
|
public class StaticResourceExtensionTests : XamlTestBase
|
|
{
|
|
[Fact]
|
|
public void StaticResource_Can_Be_Assigned_To_Property()
|
|
{
|
|
var xaml = @"
|
|
<UserControl xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<UserControl.Resources>
|
|
<SolidColorBrush x:Key='brush'>#ff506070</SolidColorBrush>
|
|
</UserControl.Resources>
|
|
|
|
<Border Name='border' Background='{StaticResource brush}'/>
|
|
</UserControl>";
|
|
|
|
var userControl = (UserControl)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var border = userControl.FindControl<Border>("border");
|
|
|
|
var brush = (ISolidColorBrush)border.Background;
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_Can_Be_Assigned_To_Attached_Property()
|
|
{
|
|
var xaml = @"
|
|
<UserControl xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<UserControl.Resources>
|
|
<x:Int32 x:Key='col'>5</x:Int32>
|
|
</UserControl.Resources>
|
|
|
|
<Border Name='border' Grid.Column='{StaticResource col}'/>
|
|
</UserControl>";
|
|
|
|
var userControl = (UserControl)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var border = userControl.FindControl<Border>("border");
|
|
|
|
Assert.Equal(5, Grid.GetColumn(border));
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_From_Style_Can_Be_Assigned_To_Property()
|
|
{
|
|
var xaml = @"
|
|
<UserControl xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<UserControl.Styles>
|
|
<Style>
|
|
<Style.Resources>
|
|
<SolidColorBrush x:Key='brush'>#ff506070</SolidColorBrush>
|
|
</Style.Resources>
|
|
</Style>
|
|
</UserControl.Styles>
|
|
|
|
<Border Name='border' Background='{StaticResource brush}'/>
|
|
</UserControl>";
|
|
|
|
var userControl = (UserControl)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var border = userControl.FindControl<Border>("border");
|
|
|
|
var brush = (ISolidColorBrush)border.Background;
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_From_Application_Can_Be_Assigned_To_Property_In_Window()
|
|
{
|
|
using (StyledWindow())
|
|
{
|
|
Application.Current.Resources.Add("brush", new SolidColorBrush(0xff506070));
|
|
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<Border Name='border' Background='{StaticResource brush}'/>
|
|
</Window>";
|
|
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var border = window.FindControl<Border>("border");
|
|
|
|
var brush = (SolidColorBrush)border.Background;
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_From_MergedDictionary_Can_Be_Assigned_To_Property()
|
|
{
|
|
var xaml = @"
|
|
<UserControl xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<UserControl.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary>
|
|
<SolidColorBrush x:Key='brush'>#ff506070</SolidColorBrush>
|
|
</ResourceDictionary>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</UserControl.Resources>
|
|
|
|
<Border Name='border' Background='{StaticResource brush}'/>
|
|
</UserControl>";
|
|
|
|
var userControl = (UserControl)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var border = userControl.FindControl<Border>("border");
|
|
|
|
var brush = (ISolidColorBrush)border.Background;
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_From_MergedDictionary_In_Style_Can_Be_Assigned_To_Property()
|
|
{
|
|
var xaml = @"
|
|
<UserControl xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<UserControl.Styles>
|
|
<Style>
|
|
<Style.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary>
|
|
<SolidColorBrush x:Key='brush'>#ff506070</SolidColorBrush>
|
|
</ResourceDictionary>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</Style.Resources>
|
|
</Style>
|
|
</UserControl.Styles>
|
|
|
|
<Border Name='border' Background='{StaticResource brush}'/>
|
|
</UserControl>";
|
|
|
|
var userControl = (UserControl)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var border = userControl.FindControl<Border>("border");
|
|
|
|
var brush = (ISolidColorBrush)border.Background;
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_From_Application_Can_Be_Assigned_To_Property_In_UserControl()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.StyledWindow))
|
|
{
|
|
Application.Current.Resources.Add("brush", new SolidColorBrush(0xff506070));
|
|
|
|
var xaml = @"
|
|
<UserControl xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<Border Name='border' Background='{StaticResource brush}'/>
|
|
</UserControl>";
|
|
|
|
var userControl = (UserControl)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var border = userControl.FindControl<Border>("border");
|
|
|
|
// We don't actually know where the global styles are until we attach the control
|
|
// to a window, as Window has StylingParent set to Application.
|
|
var window = new Window { Content = userControl };
|
|
window.Show();
|
|
|
|
var brush = (SolidColorBrush)border.Background;
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_Can_Be_Assigned_To_Setter()
|
|
{
|
|
using (StyledWindow())
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<Window.Resources>
|
|
<SolidColorBrush x:Key='brush'>#ff506070</SolidColorBrush>
|
|
</Window.Resources>
|
|
<Window.Styles>
|
|
<Style Selector='Button'>
|
|
<Setter Property='Background' Value='{StaticResource brush}'/>
|
|
</Style>
|
|
</Window.Styles>
|
|
<Button Name='button'/>
|
|
</Window>";
|
|
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var button = window.FindControl<Button>("button");
|
|
var brush = (ISolidColorBrush)button.Background;
|
|
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_From_Style_Can_Be_Assigned_To_Setter()
|
|
{
|
|
using (StyledWindow())
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<Window.Styles>
|
|
<Style>
|
|
<Style.Resources>
|
|
<SolidColorBrush x:Key='brush'>#ff506070</SolidColorBrush>
|
|
</Style.Resources>
|
|
</Style>
|
|
<Style Selector='Button'>
|
|
<Setter Property='Background' Value='{StaticResource brush}'/>
|
|
</Style>
|
|
</Window.Styles>
|
|
<Button Name='button'/>
|
|
</Window>";
|
|
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var button = window.FindControl<Button>("button");
|
|
var brush = (ISolidColorBrush)button.Background;
|
|
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_Can_Be_Assigned_To_Setter_In_Styles_File()
|
|
{
|
|
var documents = new[]
|
|
{
|
|
new RuntimeXamlLoaderDocument(new Uri("avares://Tests/Style.xaml"), @"
|
|
<Styles xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<Styles.Resources>
|
|
<SolidColorBrush x:Key='brush'>#ff506070</SolidColorBrush>
|
|
</Styles.Resources>
|
|
|
|
<Style Selector='Border'>
|
|
<Setter Property='Background' Value='{StaticResource brush}'/>
|
|
</Style>
|
|
</Styles>"),
|
|
new RuntimeXamlLoaderDocument(@"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<Window.Styles>
|
|
<StyleInclude Source='avares://Tests/Style.xaml'/>
|
|
</Window.Styles>
|
|
<Border Name='border'/>
|
|
</Window>")
|
|
};
|
|
|
|
using (StyledWindow())
|
|
{
|
|
var compiled = AvaloniaRuntimeXamlLoader.LoadGroup(documents);
|
|
var window = Assert.IsType<Window>(compiled[1]);
|
|
var border = window.FindControl<Border>("border");
|
|
var brush = (ISolidColorBrush)border.Background;
|
|
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_Can_Be_Assigned_To_Resource_Property()
|
|
{
|
|
var xaml = @"
|
|
<UserControl xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<UserControl.Resources>
|
|
<Color x:Key='color'>#ff506070</Color>
|
|
<SolidColorBrush x:Key='brush' Color='{StaticResource color}'/>
|
|
</UserControl.Resources>
|
|
|
|
<Border Name='border' Background='{StaticResource brush}'/>
|
|
</UserControl>";
|
|
|
|
var userControl = (UserControl)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var border = userControl.FindControl<Border>("border");
|
|
|
|
var brush = (SolidColorBrush)border.Background;
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_Can_Be_Assigned_To_Resource_Property_In_Styles_File()
|
|
{
|
|
var xaml = @"
|
|
<Styles xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<Styles.Resources>
|
|
<Color x:Key='color'>#ff506070</Color>
|
|
<SolidColorBrush x:Key='brush' Color='{StaticResource color}'/>
|
|
</Styles.Resources>
|
|
</Styles>";
|
|
|
|
var styles = (Styles)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var brush = (SolidColorBrush)styles.Resources["brush"];
|
|
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_Can_Be_Assigned_To_Property_In_ControlTemplate_In_Styles_File()
|
|
{
|
|
var documents = new[]
|
|
{
|
|
new RuntimeXamlLoaderDocument(new Uri("avares://Tests/Style.xaml"), @"
|
|
<Styles xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<Styles.Resources>
|
|
<SolidColorBrush x:Key='brush'>#ff506070</SolidColorBrush>
|
|
</Styles.Resources>
|
|
|
|
<Style Selector='Button'>
|
|
<Setter Property='Template'>
|
|
<ControlTemplate>
|
|
<Border Name='border' Background='{StaticResource brush}'/>
|
|
</ControlTemplate>
|
|
</Setter>
|
|
</Style>
|
|
</Styles>"),
|
|
new RuntimeXamlLoaderDocument(@"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<Window.Styles>
|
|
<StyleInclude Source='avares://Tests/Style.xaml'/>
|
|
</Window.Styles>
|
|
<Button Name='button'/>
|
|
</Window>")
|
|
};
|
|
|
|
using (StyledWindow())
|
|
{
|
|
var compiled = AvaloniaRuntimeXamlLoader.LoadGroup(documents);
|
|
var window = Assert.IsType<Window>(compiled[1]);
|
|
var button = window.FindControl<Button>("button");
|
|
|
|
window.Show();
|
|
|
|
var border = (Border)button.GetVisualChildren().Single();
|
|
var brush = (ISolidColorBrush)border.Background;
|
|
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_Can_Be_Assigned_To_ItemTemplate_Property()
|
|
{
|
|
var xaml = @"
|
|
<UserControl xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<UserControl.Resources>
|
|
<DataTemplate x:Key='PurpleData'>
|
|
<TextBlock Text='{Binding Name}' Background='Purple'/>
|
|
</DataTemplate>
|
|
</UserControl.Resources>
|
|
|
|
<ListBox Name='listBox' ItemTemplate='{StaticResource PurpleData}'/>
|
|
</UserControl>";
|
|
|
|
var userControl = (UserControl)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var listBox = userControl.FindControl<ListBox>("listBox");
|
|
|
|
Assert.NotNull(listBox.ItemTemplate);
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_Can_Be_Assigned_To_Converter()
|
|
{
|
|
using (StyledWindow())
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
|
|
xmlns:local='clr-namespace:Avalonia.Markup.Xaml.UnitTests.MarkupExtensions;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<Window.Resources>
|
|
<local:TestValueConverter x:Key='converter' Append='bar'/>
|
|
</Window.Resources>
|
|
|
|
<TextBlock Name='textBlock' Text='{Binding Converter={StaticResource converter}}'/>
|
|
</Window>";
|
|
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var textBlock = window.FindControl<TextBlock>("textBlock");
|
|
|
|
window.DataContext = "foo";
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal("foobar", textBlock.Text);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_Can_Be_Assigned_To_Binding_Converter_In_DataTemplate()
|
|
{
|
|
using (StyledWindow())
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
|
|
xmlns:local='clr-namespace:Avalonia.Markup.Xaml.UnitTests.MarkupExtensions;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<Window.Resources>
|
|
<local:TestValueConverter x:Key='converter' Append='bar'/>
|
|
<DataTemplate x:Key='PurpleData'>
|
|
<TextBlock Name='textBlock' Text='{Binding Converter={StaticResource converter}}'/>
|
|
</DataTemplate>
|
|
</Window.Resources>
|
|
|
|
<ContentPresenter Name='presenter' Content='foo' ContentTemplate='{StaticResource PurpleData}'/>
|
|
</Window>";
|
|
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
|
|
window.DataContext = "foo";
|
|
var presenter = window.FindControl<ContentPresenter>("presenter");
|
|
|
|
window.Show();
|
|
|
|
var textBlock = (TextBlock)presenter.GetVisualChildren().Single();
|
|
|
|
Assert.NotNull(textBlock);
|
|
Assert.Equal("foobar", textBlock.Text);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_Is_Correctly_Chosen_From_Within_DataTemplate()
|
|
{
|
|
// this tests if IAmbientProviders in DataTemplate contexts are in correct order
|
|
// if they wouldn't be, Purple brush would be bound to
|
|
using (StyledWindow())
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
|
|
xmlns:local='clr-namespace:Avalonia.Markup.Xaml.UnitTests.MarkupExtensions;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<Window.Resources>
|
|
<local:TestValueConverter x:Key='converter' Append='-bar'/>
|
|
<SolidColorBrush x:Key='brush' Color='Purple'/>
|
|
<DataTemplate x:Key='WhiteData'>
|
|
<Border>
|
|
<Border.Resources>
|
|
<SolidColorBrush x:Key='brush' Color='White'/>
|
|
</Border.Resources>
|
|
<TextBlock Name='textBlock' Text='{Binding Color, Source={StaticResource brush}, Converter={StaticResource converter}}' Foreground='{StaticResource brush}' />
|
|
</Border>
|
|
</DataTemplate>
|
|
</Window.Resources>
|
|
|
|
<ContentPresenter Content='foo' ContentTemplate='{StaticResource WhiteData}'/>
|
|
</Window>";
|
|
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
|
|
window.Show();
|
|
|
|
var textBlock = window.GetVisualDescendants().OfType<TextBlock>().Single();
|
|
|
|
Assert.NotNull(textBlock);
|
|
Assert.Equal("White-bar", textBlock.Text);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void StaticResource_Is_Correctly_Chosen_For_DeferredContent()
|
|
{
|
|
using (StyledWindow())
|
|
{
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(@"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
|
|
xmlns:local='clr-namespace:Avalonia.Markup.Xaml.UnitTests.MarkupExtensions;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
|
|
<Window.Resources>
|
|
<Color x:Key='Color'>Purple</Color>
|
|
</Window.Resources>
|
|
|
|
<Border>
|
|
<Border.Resources>
|
|
<Color x:Key='Color'>Red</Color>
|
|
<SolidColorBrush x:Key='Brush' Color='{StaticResource Color}' />
|
|
</Border.Resources>
|
|
<TextBlock Foreground='{StaticResource Brush}' />
|
|
</Border>
|
|
|
|
</Window>");
|
|
|
|
window.Show();
|
|
|
|
var textBlock = window.GetVisualDescendants().OfType<TextBlock>().Single();
|
|
|
|
Assert.NotNull(textBlock);
|
|
var brush = Assert.IsAssignableFrom<ISolidColorBrush>(textBlock.Foreground);
|
|
Assert.Equal(Colors.Red, brush.Color);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Control_Property_Is_Not_Updated_When_Parent_Is_Changed()
|
|
{
|
|
var xaml = @"
|
|
<UserControl xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<UserControl.Resources>
|
|
<SolidColorBrush x:Key='brush'>#ff506070</SolidColorBrush>
|
|
</UserControl.Resources>
|
|
|
|
<Border Name='border' Background='{StaticResource brush}'/>
|
|
</UserControl>";
|
|
|
|
var userControl = (UserControl)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var border = userControl.FindControl<Border>("border");
|
|
|
|
var brush = (ISolidColorBrush)border.Background;
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
|
|
userControl.Content = null;
|
|
|
|
brush = (ISolidColorBrush)border.Background;
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
|
|
[Fact]
|
|
public void Automatically_Converts_Color_To_SolidColorBrush()
|
|
{
|
|
var xaml = @"
|
|
<UserControl xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<UserControl.Resources>
|
|
<Color x:Key='color'>#ff506070</Color>
|
|
</UserControl.Resources>
|
|
|
|
<Border Name='border' Background='{StaticResource color}'/>
|
|
</UserControl>";
|
|
|
|
var userControl = (UserControl)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var border = userControl.FindControl<Border>("border");
|
|
|
|
var brush = (ISolidColorBrush)border.Background;
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
|
|
[Fact]
|
|
public void Automatically_Converts_Color_To_SolidColorBrush_From_Setter()
|
|
{
|
|
using (StyledWindow())
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<Window.Resources>
|
|
<Color x:Key='color'>#ff506070</Color>
|
|
</Window.Resources>
|
|
<Window.Styles>
|
|
<Style Selector='Button'>
|
|
<Setter Property='Background' Value='{StaticResource color}'/>
|
|
</Style>
|
|
</Window.Styles>
|
|
<Button Name='button'/>
|
|
</Window>";
|
|
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var button = window.FindControl<Button>("button");
|
|
var brush = (ISolidColorBrush)button.Background;
|
|
|
|
Assert.Equal(0xff506070, brush.Color.ToUInt32());
|
|
}
|
|
}
|
|
|
|
private static IDisposable StyledWindow(params (string, string)[] assets)
|
|
{
|
|
var services = TestServices.StyledWindow.With(
|
|
assetLoader: new MockAssetLoader(assets),
|
|
theme: () => new Styles
|
|
{
|
|
WindowStyle(),
|
|
});
|
|
|
|
return UnitTestApplication.Start(services);
|
|
}
|
|
|
|
private static Style WindowStyle()
|
|
{
|
|
return new Style(x => x.OfType<Window>())
|
|
{
|
|
Setters =
|
|
{
|
|
new Setter(
|
|
Window.TemplateProperty,
|
|
new FuncControlTemplate<Window>((x, scope) =>
|
|
new ContentPresenter
|
|
{
|
|
Name = "PART_ContentPresenter",
|
|
[!ContentPresenter.ContentProperty] = x[!Window.ContentProperty],
|
|
}.RegisterInNameScope(scope)))
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|