How can I access ResourceDictionary in wpf from C# code?

后端 未结 9 1576
[愿得一人]
[愿得一人] 2020-11-30 03:04

I have a DataTemplate defined in a xaml file that I want to access via C# code. Can anyone please tell me how can I access it? I added a new ResourceDicti

9条回答
  •  隐瞒了意图╮
    2020-11-30 03:25

    Where exactly are you defining it?

    If you define it in the ResourceDictionary of your object, then

    Application.Current.Resources[typeof(yourDataTemplateTargetType)] 
    

    should work. If you are defining it as a member of something else, like say, an ItemsControl, you need to get a handle to the ItemsControl instance and call the ItemTemplate property.

    Edit: Ok, I think we're getting somewhere. So you are defining a ResourceDictionary in its own file. Before you can use it in your UI and access it from your code behind, you need to merge that ResourceDictionary into your application. Are you doing this?

    If you are, then the next step is to get this resource. Each FrameworkElement has a method called FindResource. This method is great because it walks up the ResourceDictionary tree and attempts to locate the resource with the key. So, if you want to access this resource from a UserControl, you can do the following in the code behind:

    FindResource(typeof(yourDataTemplateTargetType));
    

    If this doesn't work for you, please show us exactly how you are declaring this resource dictionary and how it is getting merged into your application's resources.

提交回复
热议问题