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.
594 lines
21 KiB
594 lines
21 KiB
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Reactive.Subjects;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Data.Converters;
|
|
using Avalonia.UnitTests;
|
|
using Xunit;
|
|
|
|
namespace Avalonia.Markup.Xaml.UnitTests.Xaml
|
|
{
|
|
public class BindingTests : XamlTestBase
|
|
{
|
|
[Fact]
|
|
public void Binding_To_DataContext_Works()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.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.Xaml;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<Button Name='button' Content='{Binding Foo}'/>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var button = window.GetControl<Button>("button");
|
|
|
|
button.DataContext = new { Foo = "foo" };
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal("foo", button.Content);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Longhand_Binding_To_DataContext_Works()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.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.Xaml;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<Button Name='button'>
|
|
<Button.Content>
|
|
<Binding Path='Foo'/>
|
|
</Button.Content>
|
|
</Button>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var button = window.GetControl<Button>("button");
|
|
|
|
button.DataContext = new { Foo = "foo" };
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal("foo", button.Content);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Can_Bind_Control_To_Non_Control()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.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.Xaml;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<Button Name='button' Content='Foo'>
|
|
<Button.Tag>
|
|
<local:NonControl Control='{Binding #button}'/>
|
|
</Button.Tag>
|
|
</Button>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var button = window.GetControl<Button>("button");
|
|
|
|
Assert.Same(button, ((NonControl)button.Tag!).Control);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Can_Bind_To_DataContext_Of_Anchor_On_Non_Control()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.MockWindowingPlatform))
|
|
{
|
|
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.Xaml;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<Button Name='button'>
|
|
<Button.Tag>
|
|
<local:NonControl String='{Binding Foo}'/>
|
|
</Button.Tag>
|
|
</Button>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var button = window.GetControl<Button>("button");
|
|
|
|
button.DataContext = new { Foo = "foo" };
|
|
|
|
Assert.Equal("foo", ((NonControl)button.Tag!).String);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Binding_To_Window_Works()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.StyledWindow))
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
|
|
Title='{Binding Foo}'>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
|
|
window.DataContext = new { Foo = "foo" };
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal("foo", window.Title);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Binding_DataContext_To_Inherited_DataContext_Works()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.StyledWindow))
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<Border DataContext='{Binding Foo}'/>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var border = (Border)window.Content!;
|
|
|
|
window.DataContext = new { Foo = "foo" };
|
|
window.ApplyTemplate();
|
|
window.Presenter!.ApplyTemplate();
|
|
|
|
Assert.Equal("foo", border.DataContext);
|
|
}
|
|
}
|
|
|
|
|
|
[Fact]
|
|
public void Binding_To_Self_Works()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.MockWindowingPlatform))
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<TextBlock Name='textblock' Text='{Binding Tag, RelativeSource={RelativeSource Self}}'/>
|
|
</Window>";
|
|
|
|
var window = AvaloniaRuntimeXamlLoader.Parse<ContentControl>(xaml);
|
|
var textBlock = (TextBlock)window.Content!;
|
|
|
|
textBlock.Tag = "foo";
|
|
|
|
Assert.Equal("foo", textBlock.Text);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Longform_Binding_To_Self_Works()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.MockWindowingPlatform))
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<TextBlock Name='textblock' Tag='foo'>
|
|
<TextBlock.Text>
|
|
<Binding RelativeSource='{RelativeSource Self}' Path='Tag'/>
|
|
</TextBlock.Text>
|
|
</TextBlock>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var textBlock = (TextBlock)window.Content!;
|
|
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal("foo", textBlock.Text);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Binding_To_Self_In_Style_Works()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.StyledWindow))
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
|
|
<Window.Styles>
|
|
<Style Selector='Button'>
|
|
<Setter Property='IsVisible' Value='{Binding $self.IsEnabled}' />
|
|
</Style>
|
|
</Window.Styles>
|
|
|
|
<Button Name='button' />
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var button = window.GetControl<Button>("button");
|
|
|
|
window.ApplyTemplate();
|
|
window.Presenter!.ApplyTemplate();
|
|
|
|
Assert.True(button.IsVisible);
|
|
|
|
button.IsEnabled = false;
|
|
|
|
Assert.False(button.IsVisible);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Stream_Binding_To_Observable_Works()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.MockWindowingPlatform))
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>
|
|
<TextBlock Name='textblock' Text='{Binding Observable^}'/>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var textBlock = (TextBlock)window.Content!;
|
|
var observable = new BehaviorSubject<string>("foo");
|
|
|
|
window.DataContext = new { Observable = observable };
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal("foo", textBlock.Text);
|
|
observable.OnNext("bar");
|
|
Assert.Equal("bar", textBlock.Text);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Binding_To_Namespaced_Attached_Property_Works()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.MockWindowingPlatform))
|
|
{
|
|
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.Xaml;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<TextBlock local:AttachedPropertyOwner.Double='{Binding}'/>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var textBlock = (TextBlock)window.Content!;
|
|
|
|
window.DataContext = 5.6;
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal(5.6, AttachedPropertyOwner.GetDouble(textBlock));
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Binding_To_AddOwnered_Attached_Property_Works()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.MockWindowingPlatform))
|
|
{
|
|
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.Xaml;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<local:TestControl Double='{Binding}'/>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var testControl = (TestControl)window.Content!;
|
|
|
|
window.DataContext = 5.6;
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal(5.6, testControl.Double);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Binding_To_Attached_Property_Using_AddOwnered_Type_Works()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.MockWindowingPlatform))
|
|
{
|
|
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.Xaml;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<TextBlock local:TestControl.Double='{Binding}'/>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var textBlock = (TextBlock)window.Content!;
|
|
|
|
window.DataContext = 5.6;
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal(5.6, AttachedPropertyOwner.GetDouble(textBlock));
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Binding_To_Attached_Property_In_Style_Works()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.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.Xaml;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<Window.Styles>
|
|
<Style Selector='TextBlock'>
|
|
<Setter Property='local:TestControl.Double' Value='{Binding}'/>
|
|
</Style>
|
|
</Window.Styles>
|
|
<TextBlock/>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var textBlock = (TextBlock)window.Content!;
|
|
|
|
window.DataContext = 5.6;
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal(5.6, AttachedPropertyOwner.GetDouble(textBlock));
|
|
}
|
|
}
|
|
|
|
[Theory,
|
|
InlineData(@"Hello \{0\}"),
|
|
InlineData(@"'Hello {0}'"),
|
|
InlineData(@"Hello {0}")]
|
|
|
|
public void Binding_To_TextBlock_Text_With_StringConverter_Works(string fmt)
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.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.Xaml;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<TextBlock Name='textBlock' Text=""{Binding Foo, StringFormat=" + fmt + @"}""/>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var textBlock = window.GetControl<TextBlock>("textBlock");
|
|
|
|
textBlock.DataContext = new { Foo = "world" };
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal("Hello world", textBlock.Text);
|
|
}
|
|
}
|
|
|
|
[Theory,
|
|
InlineData("{}{0} {1}!"),
|
|
InlineData(@"\{0\} \{1\}!")]
|
|
public void MultiBinding_To_TextBlock_Text_With_StringConverter_Works(string fmt)
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.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.Xaml;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<TextBlock Name='textBlock'>
|
|
<TextBlock.Text>
|
|
<MultiBinding StringFormat='" + fmt + @"'>
|
|
<Binding Path='Greeting1'/>
|
|
<Binding Path='Greeting2'/>
|
|
</MultiBinding>
|
|
</TextBlock.Text>
|
|
</TextBlock>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var textBlock = window.GetControl<TextBlock>("textBlock");
|
|
|
|
textBlock.DataContext = new WindowViewModel();
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal("Hello World!", textBlock.Text);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Binding_OneWayToSource_Works()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.StyledWindow))
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
|
|
ShowInTaskbar='{Binding ShowInTaskbar, Mode=OneWayToSource}'>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var viewModel = new WindowViewModel();
|
|
|
|
window.DataContext = viewModel;
|
|
window.ApplyTemplate();
|
|
|
|
Assert.True(window.ShowInTaskbar);
|
|
Assert.True(viewModel.ShowInTaskbar);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void ConverterCulture_Can_Be_Specified_By_Ietf_Language_Tag()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.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.Xaml;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<TextBlock Name='textBlock' Text='{Binding Greeting1, Converter={x:Static local:BindingTests+CultureAppender.Instance}, ConverterCulture=ar-SA}'/>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var textBlock = Assert.IsType<TextBlock>(window.Content);
|
|
|
|
window.DataContext = new WindowViewModel();
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal("Hello+ar-SA", textBlock.Text);
|
|
}
|
|
}
|
|
|
|
[Theory]
|
|
[MemberData(nameof(NegationData))]
|
|
public void Negating_Object_Returns_Correct_Value(object value, bool? expected)
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.StyledWindow))
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
|
|
Tag='{Binding !Object}'>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var viewModel = new WindowViewModel { Object = value };
|
|
|
|
window.DataContext = viewModel;
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal(expected, window.Tag);
|
|
}
|
|
}
|
|
|
|
[Theory]
|
|
[MemberData(nameof(NegationData))]
|
|
public void Double_Negating_Object_Returns_Correct_Value(object value, bool? negated)
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.StyledWindow))
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
|
|
Tag='{Binding !!Object}'>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var viewModel = new WindowViewModel { Object = value };
|
|
|
|
window.DataContext = viewModel;
|
|
window.ApplyTemplate();
|
|
|
|
var expected = negated.HasValue ? !negated : null;
|
|
Assert.Equal(expected, window.Tag);
|
|
}
|
|
}
|
|
|
|
[Theory]
|
|
[MemberData(nameof(NegationData))]
|
|
public void Negating_Object_Returns_Correct_Value_When_Bound_To_Bool(object value, bool? expected)
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.StyledWindow))
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
|
|
IsVisible='{Binding !Object}'>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var viewModel = new WindowViewModel { Object = value };
|
|
|
|
window.DataContext = viewModel;
|
|
window.ApplyTemplate();
|
|
|
|
Assert.Equal(expected ?? false, window.IsVisible);
|
|
}
|
|
}
|
|
|
|
[Theory]
|
|
[MemberData(nameof(NegationData))]
|
|
public void Double_Negating_Object_Returns_Correct_Value_When_Bound_To_Bool(object value, bool? negated)
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.StyledWindow))
|
|
{
|
|
var xaml = @"
|
|
<Window xmlns='https://github.com/avaloniaui'
|
|
xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
|
|
IsVisible='{Binding !!Object}'>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var viewModel = new WindowViewModel { Object = value };
|
|
|
|
window.DataContext = viewModel;
|
|
window.ApplyTemplate();
|
|
|
|
var expected = negated.HasValue ? !negated : false;
|
|
Assert.Equal(expected, window.IsVisible);
|
|
}
|
|
}
|
|
|
|
public static IEnumerable<object?[]> NegationData()
|
|
{
|
|
yield return [true, false];
|
|
yield return [false, true];
|
|
yield return [null, true];
|
|
yield return [new object(), null];
|
|
yield return ["foo", null];
|
|
yield return ["true", false];
|
|
yield return ["false", true];
|
|
yield return [0, true];
|
|
yield return [1, false];
|
|
yield return [2, false];
|
|
yield return [-1, false];
|
|
yield return [0.0, true];
|
|
yield return [1.0, false];
|
|
yield return [2.0, false];
|
|
yield return [-1.0, false];
|
|
yield return [double.NaN, false];
|
|
yield return [double.PositiveInfinity, false];
|
|
yield return [double.NegativeInfinity, false];
|
|
}
|
|
|
|
private class WindowViewModel
|
|
{
|
|
public bool ShowInTaskbar { get; set; }
|
|
public string? Greeting1 { get; set; } = "Hello";
|
|
public string? Greeting2 { get; set; } = "World";
|
|
public object? Object { get; set; }
|
|
}
|
|
|
|
public class CultureAppender : IValueConverter
|
|
{
|
|
public static CultureAppender Instance { get; } = new CultureAppender();
|
|
|
|
public object Convert(object? value, Type targetType, object? parameter, CultureInfo culture)
|
|
{
|
|
return $"{value}+{culture}";
|
|
}
|
|
|
|
public object ConvertBack(object? value, Type targetType, object? parameter, CultureInfo culture)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Binding_Classes_Works()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.StyledWindow))
|
|
{
|
|
// Note, this test also checks `Classes` reordering, so it should be kept AFTER the last single class
|
|
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.Xaml;assembly=Avalonia.Markup.Xaml.UnitTests'>
|
|
<Button Name='button' Classes.MyClass='{Binding Foo}' Classes.MySecondClass='True' Classes='foo bar'/>
|
|
</Window>";
|
|
var window = (Window)AvaloniaRuntimeXamlLoader.Load(xaml);
|
|
var button = window.GetControl<Button>("button");
|
|
|
|
button.DataContext = new { Foo = true };
|
|
window.ApplyTemplate();
|
|
|
|
Assert.True(button.Classes.Contains("MyClass"));
|
|
Assert.True(button.Classes.Contains("MySecondClass"));
|
|
Assert.True(button.Classes.Contains("foo"));
|
|
Assert.True(button.Classes.Contains("bar"));
|
|
|
|
button.DataContext = new { Foo = false };
|
|
|
|
Assert.False(button.Classes.Contains("MyClass"));
|
|
Assert.True(button.Classes.Contains("MySecondClass"));
|
|
Assert.True(button.Classes.Contains("foo"));
|
|
Assert.True(button.Classes.Contains("bar"));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|