https://bugzilla.novell.com/show_bug.cgi?id=402211
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=402211#c6 --- Comment #6 from Sebastien Pouliot <[EMAIL PROTECTED]> 2008-06-26 15:04:37 MDT --- This is a special case since the brush on Canvas are rare (no Fill, but OpacityMask). There is nothing to see because the two gradient stops are both using Color="#FF000000". I suspect some script change the values somewhere (since they are named) so get a special effect. This test case, which does not work on Moonlight, should show an empty spot in the mono logo (bottom right). <Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" Width="400" Height="400"> <Canvas Canvas.Left="24" Canvas.Top="24" Opacity="0.7" Cursor="Hand" Width="100" Height="100"> <Canvas.OpacityMask> <RadialGradientBrush GradientOrigin="0.5,0.5" Center="0.5,0.5" RadiusX="0.5" RadiusY="0.5"> <GradientStop Color="#00000000" Offset="0.2" /> <GradientStop Color="#FF000000" Offset="1" /> </RadialGradientBrush> </Canvas.OpacityMask> <Image Source="mono.png" Width="63" Height="76" Stretch="UniformToFill" Opacity="1"/> </Canvas> </Canvas> -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
