https://bugzilla.novell.com/show_bug.cgi?id=362534
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=362534#c6 --- Comment #6 from Sebastien Pouliot <[EMAIL PROTECTED]> 2008-06-05 07:19:35 MDT --- LoadSilverLight gets called but it never reach the point where it assigned isdataloaded to true because the call into UpdatePlayList(false); (line 489) never returns. UpdatePlayList creates bunch (10) of childs for "playlist" using inline XAML and assign to each a Source - this second part never returns. root.findName("playlist").children.add(control.content.createFromXaml(xamlStr)); root.findName(k + "#img").Source = dsL[i].Thumbnail; for xmlStr the value is <Canvas MouseEnter="ItemGotFocus" MouseLeave="ItemLostFocus" Name="playitem#0" Cursor="Hand" Canvas.Left="33" Canvas.Top="26" MouseLeftButtonDown="DragFromPlayList" MouseMove="MoveFromPlayList" MouseLeftButtonUp="PlayFromPlayListItem"><Canvas.Resources><Storyboard Name="playitem#0#gotanim"><DoubleAnimation Storyboard.TargetName="playitem#0#img" Storyboard.TargetProperty="Opacity" To="1" Duration="0:0:0.5" /></Storyboard><Storyboard Name="playitem#0#lostanim"><DoubleAnimation Storyboard.TargetName="playitem#0#img" Storyboard.TargetProperty="Opacity" To="0.6" Duration="0:0:0.5" /></Storyboard></Canvas.Resources><Image Name="playitem#0#img" Width="80" Height="80" Stretch="UniformToFill" Opacity="0.6"/><Rectangle Canvas.Left="-15.6" Fill="#00000000" Width="15.6" Height="80"/></Canvas> for dsL[0] the Thumbnail property is http://www.mediapreview.tv/imagedownload.aspx?schema=0b2a24bf-60e7-49f5-8e7e-b6711dd66b3c&channel=3F057F6E-96D5-4A82-9106-5697B6F5826C&content_id=1C5BCFCC-DC0F-4468-8B77-4BC5EDD32090&field=img&lang=pt&ver=1 Sadly at this stage firebug behave strangely and shows different values for i (0 for the automatic watch, -1 for a manual one) and null for root.findName("playitem#0#img") which would fail on execution. Back to GDB... -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
