I have a WPF project (in .NET 4.0) with XAML resources embedded in as assembly as Pages. In the XAML, I need to have MarkupExtension that is declared in another assembly that has no specific knowledge of the assembly with the XAML.

Now, I need this MarkupExtension to be able to access the assembly in which the XAML is embedded. How is this possible?

link|improve this question

57% accept rate
feedback

2 Answers

up vote 1 down vote accepted

After a bit of playing around, I worked it out:

public override object ProvideValue( IServiceProvider serviceProvider )
{
    var contextProvider = (IXamlSchemaContextProvider)serviceProvider.GetService( typeof( IXamlSchemaContextProvider ) );
    var type = contextProvider.SchemaContext.GetType().Assembly.GetType( "System.Windows.Baml2006.Baml2006SchemaContext" );
    var property = type.GetProperty( "LocalAssembly", BindingFlags.Instance | BindingFlags.NonPublic );
    var assembly = (Assembly)property.GetValue( contextProvider, null );
    ...
}

Hope that helps someone else.

link|improve this answer
feedback

The problem is: You need the name/path of the assembly to use it in XAML. (example)

Your way is to use the MarkupExtension in the code-behind by dynamically loading your needed assembly.

link|improve this answer
There must be some 'context' in which the MarkupExtension is being called or XAML/BAML is being loaded. – Greg Bacchus May 8 '11 at 21:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.