Tagged Questions

3
votes
1answer
468 views

WPF generic colors based on SystemColors

I need to have some generic colors in my application, which are based on the system colors, which change based on the active theme. So I believe I need some IValueConverters that each return a brush ...
2
votes
3answers
115 views

Loading a combo box with all system colors in wpf

I have created combo box that I would like to load with all of the standard colors. I would like to do this in the xaml.cs file rather than the straight XAML. I have found many examples to do this in ...
1
vote
1answer
162 views

Default TabItem Background Color

I want to set the background color of a TabItem Header (TabItem.Background) if certain content is not set in the tab. To accomplish this, I have a Brush property in my ViewModel that is bound to the ...
1
vote
2answers
157 views

Hiding the selection in a WPF ListBox, keeping it in contained controls

I'm using a ListBox to display a list of editable objects whose template contains, among other things, a ComboBox. I used this common technique to hide the ListBox selection, which is not used for ...
1
vote
2answers
427 views

WPF resource not found

If I use the following in XAML I get an error: <Style TargetType="TreeViewItem"> <Style.Triggers> <DataTrigger Binding="{Binding Selected}" Value="True"> ...
1
vote
0answers
942 views

ComponentResourceKey as DynamicResource problem

I'm seeing some unexpected behavior using ComponentResourceKey. The problem came up because I was using names used in the SystemColors class. Consider the following code: First I expose a ...
0
votes
1answer
40 views

Border around ListView when IsEnabled is false

When setting IsEnabled to False on a ListView I get a one pixel thick border around the control, with color #F0F0F0 (on Win7). I'm suspecting that it's one of the SystemColors kicking in. How do I ...
0
votes
1answer
419 views

Reset TextBox.Background to default in WPF so it still gets updated when system settings change

I have a TextBox that I wish to reset its Background property to its default value after changing it to a different colour. I have tried setting it to SystemColors.WindowBrush, but then, if the ...