I’m attempting to set a reference to a style in a control I’m creating in the code behind. Normally in WPF, I’d use the SetResourceReference method. However, I see that this method doesn’t seem to exist on the Button property in Metro.
What is the equivalent in a Metro application?
I ended using a custom implementation of TryFindResource shown here. The problem with using the this.Resources property suggested in a different answer is that it doesn’t search up the entire resource tree for resources that might be in the App resources. The implementation in the link I provided does that. It is based off of something common in Silverlight which has the same issue.