How can you set the following in code behind?
<Style TargetType="{x:Type TextBox}" BasedOn="{StaticResource {x:Type TextBox}}">
I'm using a Theme merged in App.xaml. It works great for all Controls but when I define a Style for something, e.g. TextBox
, the Theme Style doesn't get picked up unless I use BasedOn
like above, instead it gets the default TextBox
Style.
Now I'm creating a DataGridTextColumn
in code behind and I can't get the BasedOn
part to work for the EditingElementStyle
Style editingStyle = new Style(typeof(TextBox));
editingStyle.BasedOn = ...?;
Any suggestions? Also, is there any way to get the Theme Style instead of the default Style applied without using BasedOn?
Thanks
ListBoxItem.IsSelected
in theListBox
ItemContainerStyle for example. I want the Theme Style applied with an additional setter – Hypothetical