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.
104 lines
3.0 KiB
104 lines
3.0 KiB
// Copyright (c) The Avalonia Project. All rights reserved.
|
|
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
|
|
|
using System.Linq;
|
|
using System.Reactive.Linq;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Data;
|
|
using Avalonia.Markup.Xaml.Data;
|
|
using Avalonia.Styling;
|
|
using Avalonia.UnitTests;
|
|
using Xunit;
|
|
|
|
namespace Avalonia.Markup.Xaml.UnitTests
|
|
{
|
|
public class StyleTests
|
|
{
|
|
[Fact]
|
|
public void Binding_Should_Be_Assigned_To_Setter_Value_Instead_Of_Bound()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.MockPlatformWrapper))
|
|
{
|
|
var xaml = "<Style xmlns='https://github.com/avaloniaui'><Setter Value='{Binding}'/></Style>";
|
|
var loader = new AvaloniaXamlLoader();
|
|
var style = (Style)loader.Load(xaml);
|
|
var setter = (Setter)(style.Setters.First());
|
|
|
|
Assert.IsType<Binding>(setter.Value);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Setter_With_TwoWay_Binding_Should_Update_Source()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.MockThreadingInterface))
|
|
{
|
|
var data = new Data
|
|
{
|
|
Foo = "foo",
|
|
};
|
|
|
|
var control = new TextBox
|
|
{
|
|
DataContext = data,
|
|
};
|
|
|
|
var setter = new Setter
|
|
{
|
|
Property = TextBox.TextProperty,
|
|
Value = new Binding
|
|
{
|
|
Path = "Foo",
|
|
Mode = BindingMode.TwoWay
|
|
}
|
|
};
|
|
|
|
setter.Apply(null, control, null);
|
|
Assert.Equal("foo", control.Text);
|
|
|
|
control.Text = "bar";
|
|
Assert.Equal("bar", data.Foo);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Setter_With_TwoWay_Binding_And_Activator_Should_Update_Source()
|
|
{
|
|
using (UnitTestApplication.Start(TestServices.MockThreadingInterface))
|
|
{
|
|
var data = new Data
|
|
{
|
|
Foo = "foo",
|
|
};
|
|
|
|
var control = new TextBox
|
|
{
|
|
DataContext = data,
|
|
};
|
|
|
|
var setter = new Setter
|
|
{
|
|
Property = TextBox.TextProperty,
|
|
Value = new Binding
|
|
{
|
|
Path = "Foo",
|
|
Mode = BindingMode.TwoWay
|
|
}
|
|
};
|
|
|
|
var activator = Observable.Never<bool>().StartWith(true);
|
|
|
|
setter.Apply(null, control, activator);
|
|
Assert.Equal("foo", control.Text);
|
|
|
|
control.Text = "bar";
|
|
Assert.Equal("bar", data.Foo);
|
|
}
|
|
}
|
|
|
|
private class Data
|
|
{
|
|
public string Foo { get; set; }
|
|
}
|
|
}
|
|
}
|
|
|