I have two Imagebrushes, as you see they are exactly the same but one is with opacity.
<ImageBrush x:Key="One" ImageSource="AluSilver.jpg" TileMode="Tile" Viewport="0,0,200,200" ViewportUnits="Absolute" Opacity="0.5" />
<ImageBrush x:Key="Two" ImageSource="AluSilver.jpg" TileMode="Tile" Viewport="0,0,200,200" ViewportUnits="Absolute" />
Since Brushes are not styleable I must create these two.
Is there a way to bypass this?