Skip to content
This repository has been archived by the owner on Oct 16, 2020. It is now read-only.

Commit

Permalink
Merge pull request #661 from gumme/WpfDesignerBrushEditorNameFix
Browse files Browse the repository at this point in the history
Tab headers should not expose technology names or words.
  • Loading branch information
Rpinski committed Feb 26, 2015
2 parents a277944 + 3f52bfa commit a7c264e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -72,12 +72,12 @@
<TabItem Header="Radial">
<BrushEditor:GradientBrushEditor />
</TabItem>
<TabItem Header="Brush List">
<TabItem Header="System brushes">
<ListBox MaxHeight="320" ItemsSource="{Binding AvailableBrushes}"
SelectedValue="{Binding Brush.Color}"
SelectedValuePath="Brush.Color" />
</TabItem>
<TabItem Header="Wpf Brush List">
<TabItem Header="Brushes">
<ListBox MaxHeight="320" ItemsSource="{Binding AvailableWpfBrushes}"
SelectedValue="{Binding Brush.Color}"
SelectedValuePath="Brush.Color" />
Expand Down
Expand Up @@ -8,12 +8,12 @@
<TabItem Header="Color Picker">
<widgets:ColorPicker Color="{Binding Color, ElementName=this}" />
</TabItem>
<TabItem Header="Color List">
<TabItem Header="System colors">
<ListBox ItemsSource="{Binding AvailableColors}"
SelectedValue="{Binding Color, ElementName=this}"
SelectedValuePath="Brush.Color" />
</TabItem>
<TabItem Header="Wpf Color List">
<TabItem Header="Colors">
<ListBox ItemsSource="{Binding AvailableWpfBrushes}"
SelectedValue="{Binding Color, ElementName=this}"
SelectedValuePath="Brush.Color" />
Expand Down

0 comments on commit a7c264e

Please sign in to comment.