Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
216 views
in Technique[技术] by (71.8m points)

c# - Access ResourceDictionary from another assembly in Code

In my library I want to create TabItems in a method. The TabItems should use a Template which is defined in a ResourceDictionary in another assembly.

While searching for a solution I found the following code:

ResourceDictionary res = (ResourceDictionary) Application.LoadComponent(new Uri("BaseLib.WPF.Skinning;component/BaseStyles.xaml", UriKind.Relative));

If I execute the code I get a FileNotFoundException within the target-assembly. The assembly BaseLib.WPF.Skinning is added as reference to the project.

How can I access my ResourceDictionary from my code?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try this:

`Application.LoadComponent(new Uri("pack://application:,,,/BaseLib.WPF.Skinning;component/BaseStyles.xaml")`

Uri need's String type argument ... http://msdn.microsoft.com/en-us/library/system.uri(v=vs.110).aspx


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...