Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=82612 --- shadow/82612 2007-08-28 08:46:01.000000000 -0400 +++ shadow/82612.tmp.12542 2007-08-28 08:46:01.000000000 -0400 @@ -0,0 +1,52 @@ +Bug#: 82612 +Product: Moonlight +Version: 1_0 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: xaml +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: xaml collections are replaced instead of merged + +Description of Problem: + +The following XAML file includes two GeometryGroup in a single Path.Data. + +<Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> + <Path Fill="#770000FF" Stroke="#77777777" StrokeThickness="3"> + <Path.Data> + <GeometryGroup FillRule="EvenOdd"> + <RectangleGeometry Rect="20,40 200 200" /> + <LineGeometry StartPoint="10,60" EndPoint="110,60" /> + <EllipseGeometry Center="50,50" RadiusX="10" RadiusY="10" /> + </GeometryGroup> + <GeometryGroup FillRule="EvenOdd"> + <EllipseGeometry Center="130,200" RadiusX="30" RadiusY="100" /> + + <LineGeometry StartPoint="60,10" EndPoint="60,110" /> + <RectangleGeometry Rect="50,20,100,100" RadiusX="20" RadiusY="20" /> + </GeometryGroup> + </Path.Data> + </Path> +</Canvas> + + +Actual Results: +On Moonlight the second GeometryGroup replace the first one. + +Expected Results: +On Silverlight both GeometryGroup are merged. + +How often does this happen? +Always + +Additional Information: +This may happens on other/all collections. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
