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.
71 lines
2.2 KiB
71 lines
2.2 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;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Reactive.Linq;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Data;
|
|
using Portable.Xaml;
|
|
using Portable.Xaml.ComponentModel;
|
|
using Portable.Xaml.Markup;
|
|
|
|
namespace Avalonia.Markup.Xaml.MarkupExtensions
|
|
{
|
|
public class DynamicResourceExtension : MarkupExtension, IBinding
|
|
{
|
|
private IResourceNode _anchor;
|
|
|
|
public DynamicResourceExtension()
|
|
{
|
|
}
|
|
|
|
public DynamicResourceExtension(string resourceKey)
|
|
{
|
|
ResourceKey = resourceKey;
|
|
}
|
|
|
|
public string ResourceKey { get; set; }
|
|
|
|
public override object ProvideValue(IServiceProvider serviceProvider)
|
|
{
|
|
var context = (ITypeDescriptorContext)serviceProvider;
|
|
var provideTarget = context.GetService<IProvideValueTarget>();
|
|
|
|
if (!(provideTarget.TargetObject is IResourceNode))
|
|
{
|
|
_anchor = GetAnchor<IResourceNode>(context);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
|
|
InstancedBinding IBinding.Initiate(
|
|
IAvaloniaObject target,
|
|
AvaloniaProperty targetProperty,
|
|
object anchor,
|
|
bool enableDataValidation)
|
|
{
|
|
var control = target as IResourceNode ?? _anchor;
|
|
|
|
if (control != null)
|
|
{
|
|
return new InstancedBinding(control.GetResourceObservable(ResourceKey));
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private T GetAnchor<T>(ITypeDescriptorContext context) where T : class
|
|
{
|
|
var schemaContext = context.GetService<IXamlSchemaContextProvider>()?.SchemaContext;
|
|
var ambientProvider = context.GetService<IAmbientProvider>();
|
|
var xamlType = schemaContext.GetXamlType(typeof(T));
|
|
|
|
// We override XamlType.CanAssignTo in BindingXamlType so the results we get back
|
|
// from GetAllAmbientValues aren't necessarily of the correct type.
|
|
return ambientProvider.GetAllAmbientValues(xamlType).OfType<T>().FirstOrDefault();
|
|
}
|
|
}
|
|
}
|
|
|