<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>Silverlight Toolkit</title><link>http://silverlight.codeplex.com/Project/ProjectRss.aspx</link><description>The Silverlight Toolkit is a collection of Silverlight controls, components and utilities made available outside the normal Silverlight release cycle.</description><item><title>Commented Issue: Change TabPanel instances to Panel in TabControl.cs [4602]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4602</link><description>In trying to retask the TabControl into an Outlook-style navigation bar I ran into what I think is a design flaw in the TabControl.&lt;br /&gt;&lt;br /&gt;In true WPF&amp;#47;Silverlight style, I wanted to start by changing the control&amp;#39;s template and replace the TabPanel with a StackPanel.  There are several published examples of this being done with the WPF TabControl &amp;#40;e.g. http&amp;#58;&amp;#47;&amp;#47;www.codeproject.com&amp;#47;KB&amp;#47;WPF&amp;#47;WPFOutlookNavi.aspx&amp;#63;msg&amp;#61;3007475&amp;#41;.  However, I noticed that all of TabControl.cs&amp;#39;s references to the TabPanel specifically used that type instead of the more generic Panel or something along those lines.  That means that we&amp;#39;re stuck w&amp;#47; TabPanel even if we&amp;#39;d rather use something else.&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve replaced all the references to TabPanel to Panel just to make sure TabControl still works as expected - and it does seem to.&lt;br /&gt;</description><author>sp00ky</author><pubDate>Sat, 07 Nov 2009 14:54:40 GMT</pubDate><guid isPermaLink="false">Commented Issue: Change TabPanel instances to Panel in TabControl.cs [4602] 20091107025440P</guid></item><item><title>Commented Issue: ChildWindow - make it really modal [3730]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=3730</link><description>Everything about the behavior suggests that it is a modal dialog.  But it is an async dialog, therefore using it in certain scenarios &amp;#40;like a confirm delete dialog in DataForm&amp;#41; breaks the expected behavior.  This request is to make it a truly modal dialog behavior.&lt;br /&gt;Comments: ** Comment from web user: DarkByte ** &lt;p&gt;Guys, you should learn to use this behavior. Instead of thinking Modal, think deferred execution. I used to think like you until i finally understood why they choose this path.&lt;/p&gt;&lt;p&gt;So, in the case of &amp;#34;Are you sure you want ot Delete xxxxx &amp;#63;&amp;#34;, split the functionality. Just before showing the ChildWindow, attach an event to the Closing&amp;#47;Closed event. From there you can tell if the DialogResult was true or false and react appropriately. &lt;/p&gt;&lt;p&gt;Like&amp;#58;&lt;/p&gt;&lt;p&gt;private void OnDeleteButtonClicked&amp;#40;object sender, ....&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;   ChildWindow window &amp;#61; new ConfirmationDialog&amp;#40;&amp;#34;Are you sure you want to delete xxxxx &amp;#63;&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;   window.Closed &amp;#43;&amp;#61; OnProcessDeleteConfirmation&amp;#59;&lt;br /&gt;   window.Show&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;/p&gt;&lt;p&gt;private void OnProcessDeleteConfirmation&amp;#40;object sender, ... &amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;      if &amp;#40;&amp;#40;sender as ChildWindow&amp;#41;.DialogResult &amp;#61;&amp;#61; true&amp;#41;&lt;br /&gt;      &amp;#123;&lt;br /&gt;            &amp;#47;&amp;#47; Proceed with deletion&lt;br /&gt;      &amp;#125;&lt;br /&gt;&amp;#125;&lt;/p&gt;&lt;p&gt;Hope this clarifies why its built that way &amp;#33;&lt;br /&gt;&lt;/p&gt;</description><author>DarkByte</author><pubDate>Fri, 06 Nov 2009 16:40:50 GMT</pubDate><guid isPermaLink="false">Commented Issue: ChildWindow - make it really modal [3730] 20091106044050P</guid></item><item><title>Created Issue: ImplicitStyleManager (ISM) does not work with ColumnSeries and BarSeries [4607]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4607</link><description>Unlike the other chart types &amp;#40;LineSeries, AreaSeries, PieSeries&amp;#41;, ImplicitStyleManager does not set implicit styles for ColumnSeries and BarSeries chart types.&lt;br /&gt;&lt;br /&gt;The following XAML defines the implicit style that should work, but doesn&amp;#39;t&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#60;Style x&amp;#58;Key&amp;#61;&amp;#34;CommonColumnSeriesDataPoint&amp;#34; TargetType&amp;#61;&amp;#34;charting&amp;#58;ColumnDataPoint&amp;#34;&amp;#62;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#60;Setter Property&amp;#61;&amp;#34;Background&amp;#34; Value&amp;#61;&amp;#34;Red&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;&amp;#9;&amp;#60;&amp;#47;Style&amp;#62;&lt;br /&gt;&amp;#9;&amp;#60;Style TargetType&amp;#61;&amp;#34;charting&amp;#58;ColumnSeries&amp;#34;&amp;#62;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#60;Setter Property&amp;#61;&amp;#34;DataPointStyle&amp;#34; Value&amp;#61;&amp;#34;&amp;#123;StaticResource CommonColumnSeriesDataPoint&amp;#125;&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;&amp;#9;&amp;#60;&amp;#47;Style&amp;#62;&lt;br /&gt;&lt;br /&gt;The following XAML defines the chart&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#60;charting&amp;#58;Chart ToolkitTheming&amp;#58;ImplicitStyleManager.ApplyMode&amp;#61;&amp;#34;Auto&amp;#34;&amp;#62;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#60;charting&amp;#58;Chart.Series&amp;#62;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#60;charting&amp;#58;ColumnSeries &lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;IndependentValueBinding&amp;#61;&amp;#34;&amp;#123;Binding Name, Mode&amp;#61;OneWay&amp;#125;&amp;#34; &lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;&amp;#9;DependentValueBinding&amp;#61;&amp;#34;&amp;#123;Binding Balance, Mode&amp;#61;OneWay, Converter&amp;#61;&amp;#123;StaticResource MillicentsToDouble&amp;#125;&amp;#125;&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#60;&amp;#47;charting&amp;#58;Chart.Series&amp;#62;&lt;br /&gt;&amp;#9;&amp;#60;&amp;#47;charting&amp;#58;Chart&amp;#62;&lt;br /&gt;</description><author>jimmccurdy</author><pubDate>Fri, 06 Nov 2009 04:00:44 GMT</pubDate><guid isPermaLink="false">Created Issue: ImplicitStyleManager (ISM) does not work with ColumnSeries and BarSeries [4607] 20091106040044A</guid></item><item><title>Created Issue: DataGridDragDropTarget can't show the snapshot correctly [4606]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4606</link><description>In the App I want to drag a record from a datagrid to a listbox, but the snapshot is not the one that being dragged.Please see the attachment.&lt;br /&gt;</description><author>liudingnet</author><pubDate>Fri, 06 Nov 2009 02:41:22 GMT</pubDate><guid isPermaLink="false">Created Issue: DataGridDragDropTarget can't show the snapshot correctly [4606] 20091106024122A</guid></item><item><title>Created Issue: DataGrid does not honor DisplayFormatAttribute [4603]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4603</link><description>I would like to be able to set my display format on my Model using the DisplayFormatAttribute and have the DataGrid format the column correctly.&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#60;Display&amp;#40;Name&amp;#58;&amp;#61;&amp;#34;Birth Date&amp;#34;&amp;#41;&amp;#62; _&lt;br /&gt;&amp;#9;&amp;#60;DisplayFormat&amp;#40;DataFormatString&amp;#58;&amp;#61;&amp;#34;&amp;#123;0&amp;#58;MM&amp;#47;dd&amp;#47;yyyy&amp;#125;&amp;#34;&amp;#41;&amp;#62; _&lt;br /&gt;&amp;#9;Public Property BirthDate&amp;#40;&amp;#41; As DateTime&lt;br /&gt;&amp;#9;&amp;#9;Get&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;Return _birthDate&lt;br /&gt;&amp;#9;&amp;#9;End Get&lt;br /&gt;&amp;#9;&amp;#9;Set&amp;#40;ByVal value As DateTime&amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;_birthDate &amp;#61; value&lt;br /&gt;&amp;#9;&amp;#9;End Set&lt;br /&gt;&amp;#9;End Property&lt;br /&gt;&lt;br /&gt;The display property is currently being honored, but not the DisplayFormat.&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;Mike&lt;br /&gt;</description><author>schallm</author><pubDate>Thu, 05 Nov 2009 21:15:00 GMT</pubDate><guid isPermaLink="false">Created Issue: DataGrid does not honor DisplayFormatAttribute [4603] 20091105091500P</guid></item><item><title>Created Issue: Change TabPanel instances to Panel in TabControl.cs [4602]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4602</link><description>In trying to retask the TabControl into an Outlook-style navigation bar I ran into what I think is a design flaw in the TabControl.&lt;br /&gt;&lt;br /&gt;In true WPF&amp;#47;Silverlight style, I wanted to start by changing the control&amp;#39;s template and replace the TabPanel with a StackPanel.  There are several published examples of this being done with the WPF TabControl &amp;#40;e.g. http&amp;#58;&amp;#47;&amp;#47;www.codeproject.com&amp;#47;KB&amp;#47;WPF&amp;#47;WPFOutlookNavi.aspx&amp;#63;msg&amp;#61;3007475&amp;#41;.  However, I noticed that all of TabControl.cs&amp;#39;s references to the TabPanel specifically used that type instead of the more generic Panel or something along those lines.  That means that we&amp;#39;re stuck w&amp;#47; TabPanel even if we&amp;#39;d rather use something else.&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve replaced all the references to TabPanel to Panel just to make sure TabControl still works as expected - and it does seem to.&lt;br /&gt;</description><author>sp00ky</author><pubDate>Thu, 05 Nov 2009 19:58:39 GMT</pubDate><guid isPermaLink="false">Created Issue: Change TabPanel instances to Panel in TabControl.cs [4602] 20091105075839P</guid></item><item><title>Created Issue: Problem with TabControl inheritance. [4598]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4598</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I have a problem when I create a new class which inherits from TabControl. &lt;br /&gt;I am using Visual Studio 2010 Beta 2 with silverlight 3 and the october release of the toolkit, the problem ocurs when I create a new silverlight project, then I add a plain class&amp;#40;MyTabControl&amp;#41; and make it inherit from TabControl.&lt;br /&gt;When I try to use MyTabControl either in the visual studio designer or expression blend 3, I get a null reference exception and nothing is shown on the designer.&lt;br /&gt;&lt;br /&gt;I think this might be an issue with the designer dll requiered for visual or blend, but I believe it should work anyway because I am just inheriting a control.&lt;br /&gt;&lt;br /&gt;Any ideas&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks,Aram&lt;br /&gt;</description><author>visualaram</author><pubDate>Thu, 05 Nov 2009 14:29:48 GMT</pubDate><guid isPermaLink="false">Created Issue: Problem with TabControl inheritance. [4598] 20091105022948P</guid></item><item><title>Created Issue: Silverlight Control for Help 3 [4597]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4597</link><description>Included in the release of VS 2010 Beta 2 is Help 3.&lt;br /&gt;It would be great if the Toolkit could develop a control that supports Help 3 files.&lt;br /&gt;&lt;br /&gt;thanks&lt;br /&gt;</description><author>t_h_048d3</author><pubDate>Thu, 05 Nov 2009 09:44:10 GMT</pubDate><guid isPermaLink="false">Created Issue: Silverlight Control for Help 3 [4597] 20091105094410A</guid></item><item><title>Commented Issue: DataPager - MoveNext arrow remains enabled when last page has been reached [4572]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4572</link><description>The Move Next button on the DataPager does not become disabled when the pager control has reached the last page.&lt;br /&gt;Comments: ** Comment from web user: jeffwilcox ** &lt;p&gt;Hi, I have not been able to reproduce this. Looking at the sample project &amp;#40;http&amp;#58;&amp;#47;&amp;#47;silverlight.net&amp;#47;content&amp;#47;samples&amp;#47;sl3&amp;#47;toolkitcontrolsamples&amp;#47;run&amp;#47;default.html&amp;#41;, it works in the standard case.&lt;/p&gt;&lt;p&gt;Is it possible that there is an issue with your underlying data source&amp;#63; Are you re-templating&amp;#63;&lt;/p&gt;&lt;p&gt;Any additional information to reproduce this would be quite helpful.&lt;/p&gt;</description><author>jeffwilcox</author><pubDate>Thu, 05 Nov 2009 08:11:02 GMT</pubDate><guid isPermaLink="false">Commented Issue: DataPager - MoveNext arrow remains enabled when last page has been reached [4572] 20091105081102A</guid></item><item><title>Reviewed: October 2009 (十一月 04, 2009)</title><link>http://silverlight.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30514#ReviewBy-chuncn</link><description>Rated 3 Stars &amp;#40;out of 5&amp;#41; - now i am studying  and using silverlight.</description><author>chuncn</author><pubDate>Wed, 04 Nov 2009 14:40:26 GMT</pubDate><guid isPermaLink="false">Reviewed: October 2009 (十一月 04, 2009) 20091104024026P</guid></item><item><title>Created Issue: RainierOrange and RainierPurple control templates misspelling [4585]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4585</link><description>The Rainier Orange and Rainier Purple control templates generate misspelled namespace names when you create a new instance of the theme from the toolbox.&lt;br /&gt;&lt;br /&gt;Examples&amp;#58;&lt;br /&gt;&amp;#60;rainerOrange&amp;#58;RainierOrangeTheme&amp;#62;&amp;#60;&amp;#47;rainerOrange&amp;#58;RainierOrangeTheme&amp;#62;&lt;br /&gt;&amp;#60;rainerPurple&amp;#58;RainierPurpleTheme&amp;#62;&amp;#60;&amp;#47;rainerPurple&amp;#58;RainierPurpleTheme&amp;#62;&lt;br /&gt;&lt;br /&gt;This is related to, but not the same as, work item 1108.&lt;br /&gt;</description><author>joechung</author><pubDate>Wed, 04 Nov 2009 07:46:54 GMT</pubDate><guid isPermaLink="false">Created Issue: RainierOrange and RainierPurple control templates misspelling [4585] 20091104074654A</guid></item><item><title>Commented Issue: Incorrect Assembly info for RainierOrange and RainierPurple themes. [1108]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=1108</link><description>AssemblyInfo.cs files for both projects contain a number of typos in the assembly name.&lt;br /&gt;&amp;#34;RainerOrange&amp;#34; should be &amp;#34;RainierOrange&amp;#34;.&lt;br /&gt;&lt;br /&gt;...&lt;br /&gt;&lt;br /&gt;&amp;#91;assembly&amp;#58; AssemblyTitle&amp;#40;&amp;#34;Microsoft.Windows.Controls.Theming.RainerOrange&amp;#34;&amp;#41;&amp;#93;&lt;br /&gt;&lt;br /&gt;...&lt;br /&gt;&lt;br /&gt;&amp;#91;assembly&amp;#58; XmlnsPrefix&amp;#40;&amp;#34;clr-namespace&amp;#58;Microsoft.Windows.Controls.Theming&amp;#59;assembly&amp;#61;Microsoft.Windows.Controls.Theming.RainerOrange&amp;#34;, &amp;#34;rainerOrange&amp;#34;&amp;#41;&amp;#93; &lt;br /&gt;&amp;#91;assembly&amp;#58; XmlnsDefinition&amp;#40;&amp;#34;clr-namespace&amp;#58;Microsoft.Windows.Controls.Theming&amp;#59;assembly&amp;#61;Microsoft.Windows.Controls.Theming.RainerOrange&amp;#34;, &amp;#34;Microsoft.Windows.Controls.Theming&amp;#34;&amp;#41;&amp;#93;&lt;br /&gt;Comments: ** Comment from web user: joechung ** &lt;p&gt;The spelling in the control templates for these two themes is still wrong.&lt;/p&gt;</description><author>joechung</author><pubDate>Wed, 04 Nov 2009 07:30:58 GMT</pubDate><guid isPermaLink="false">Commented Issue: Incorrect Assembly info for RainierOrange and RainierPurple themes. [1108] 20091104073058A</guid></item><item><title>Created Issue: DataPager - MoveNext arrow remains enabled when last page has been reached [4572]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4572</link><description>The Move Next button on the DataPager does not become disabled when the pager control has reached the last page.&lt;br /&gt;</description><author>DMinguez</author><pubDate>Tue, 03 Nov 2009 17:42:53 GMT</pubDate><guid isPermaLink="false">Created Issue: DataPager - MoveNext arrow remains enabled when last page has been reached [4572] 20091103054253P</guid></item><item><title>Created Issue: DatePicker resets Date format for non-Gregorian calendars. [4569]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4569</link><description>If non-Gregorian calendar is used in the system, DatePicker doesn&amp;#39;t honor long date pattern set in the system and resets representation to Gregorian calendar.&lt;br /&gt;Steps to reproduce&amp;#58;&lt;br /&gt;1. Go to Control Panel --&amp;#62; Regional and Language Options --&amp;#62; Regional Options --&amp;#62; Date.&lt;br /&gt;2. Set the calendar type to &amp;#34;Japanese&amp;#34; &amp;#40;&amp;#21644;&amp;#26278; on a Japanese system&amp;#41;.&lt;br /&gt;3. Set the Long date format to gg yy&amp;#39;&amp;#24180;&amp;#39;MM&amp;#39;&amp;#26376;&amp;#39;dd&amp;#39;&amp;#26085;&amp;#39;.&lt;br /&gt;Result in control panel is &amp;#24179;&amp;#25104; 21&amp;#24180;10&amp;#26376;30&amp;#26085; &amp;#40;for current date&amp;#41;.&lt;br /&gt;&lt;br /&gt;Result in DatePicker is 2009&amp;#24180;10&amp;#26376;30&amp;#26085;. Era &amp;#34;&amp;#24179;&amp;#25104;&amp;#34; is not displayed.&lt;br /&gt;&lt;br /&gt;At the same time I don&amp;#39;t see why don&amp;#39;t show the same string as in the system. DateTime.ToString&amp;#40;&amp;#41; returns correct string&amp;#58; &amp;#34;&amp;#24179;&amp;#25104; 21&amp;#24180;10&amp;#26376;30&amp;#26085;&amp;#34;&lt;br /&gt;</description><author>notacat</author><pubDate>Tue, 03 Nov 2009 14:19:42 GMT</pubDate><guid isPermaLink="false">Created Issue: DatePicker resets Date format for non-Gregorian calendars. [4569] 20091103021942P</guid></item><item><title>Created Issue: DataField Content does not follow VerticalAlignment rules [4566]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4566</link><description>Adding Content that can be stretched in a DataField, like a DataGrid or a TextBox that have VerticalAlignment set to Stretch does not work. You can see the DataField taking a bigger region, but not its content. Setting VerticalContentAlignment on the DataField does not work either.&lt;br /&gt;&lt;br /&gt;ex&amp;#58;&lt;br /&gt;&amp;#60;dataFormToolkit&amp;#58;DataField Width&amp;#61;&amp;#34;400&amp;#34; Height&amp;#61;&amp;#34;400&amp;#34; DescriptionViewerPosition&amp;#61;&amp;#34;BesideLabel&amp;#34; LabelPosition&amp;#61;&amp;#34;Top&amp;#34;&amp;#62;&lt;br /&gt;  &amp;#60;TextBox VerticalAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;dataFormToolkit&amp;#58;DataField&amp;#62;&lt;br /&gt;</description><author>DarkByte</author><pubDate>Mon, 02 Nov 2009 20:40:55 GMT</pubDate><guid isPermaLink="false">Created Issue: DataField Content does not follow VerticalAlignment rules [4566] 20091102084055P</guid></item><item><title>Created Issue: System.ArgumentException while using TransitioningContentControl [4557]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4557</link><description>I have a silverlight application with 2 HyperLinks controls and a Frame control &amp;#40;see attached file&amp;#41;&lt;br /&gt;The Frame&amp;#39;s Template use a TransitioningContentControl.&lt;br /&gt;&lt;br /&gt;Important to reproduce the bug &amp;#58; the pages must have the NavigationCacheMode property to Enabled.&lt;br /&gt;&lt;br /&gt;When I click on two links quickly I get the following exception &amp;#58;&lt;br /&gt;&lt;br /&gt;System.ArgumentException was unhandled by user code.&lt;br /&gt;Message&amp;#61;&amp;#34;Value does not fall within the expected range.&amp;#34;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;at MS.Internal.XcpImports.CheckHResult&amp;#40;UInt32 hr&amp;#41;&lt;br /&gt;at MS.Internal.XcpImports.SetValue&amp;#40;INativeCoreTypeWrapper obj, DependencyProperty property, DependencyObject doh&amp;#41;&lt;br /&gt;at MS.Internal.XcpImports.SetValue&amp;#40;INativeCoreTypeWrapper doh, DependencyProperty property, Object obj&amp;#41;&lt;br /&gt;at System.Windows.DependencyObject.SetObjectValueToCore&amp;#40;DependencyProperty dp, Object value&amp;#41;&lt;br /&gt;at System.Windows.DependencyObject.SetValueInternal&amp;#40;DependencyProperty dp, Object value, Boolean allowReadOnlySet, Boolean isSetByStyle, Boolean isSetByBuiltInStyle&amp;#41;&lt;br /&gt;at System.Windows.DependencyObject.SetValueInternal&amp;#40;DependencyProperty dp, Object value&amp;#41;&lt;br /&gt;at System.Windows.DependencyObject.SetValue&amp;#40;DependencyProperty dp, Object value&amp;#41;&lt;br /&gt;at System.Windows.Controls.ContentControl.set_Content&amp;#40;Object value&amp;#41;&lt;br /&gt;at SilverlightToolkitDemos.TransitionContentControl.btnNext_Click&amp;#40;Object sender, RoutedEventArgs e&amp;#41;&lt;br /&gt;at System.Windows.Controls.Primitives.ButtonBase.OnClick&amp;#40;&amp;#41;&lt;br /&gt;at System.Windows.Controls.Button.OnClick&amp;#40;&amp;#41;&lt;br /&gt;at System.Windows.Controls.Primitives.ButtonBase.OnMouseLeftButtonUp&amp;#40;MouseButtonEventArgs e&amp;#41;&lt;br /&gt;at System.Windows.Controls.Control.OnMouseLeftButtonUp&amp;#40;Control ctrl, EventArgs e&amp;#41;&lt;br /&gt;at MS.Internal.JoltHelper.FireEvent&amp;#40;IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, String eventName&amp;#41;&lt;br /&gt;</description><author>Vko</author><pubDate>Sun, 01 Nov 2009 14:15:35 GMT</pubDate><guid isPermaLink="false">Created Issue: System.ArgumentException while using TransitioningContentControl [4557] 20091101021535P</guid></item><item><title>Created Issue: TreeView Drag&amp;Drop throws exception [4551]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4551</link><description>I am trying to do very basic testing of the &amp;#40;great&amp;#33;&amp;#41; new TreeView drag&amp;#38;drop capability, by adding TreeViewItems programmatically &amp;#40;no DataBinding&amp;#41; into a TreeView encapsulated in a &amp;#60;controlsToolkit&amp;#58;TreeViewDragDropTarget&amp;#62;&amp;#58;&lt;br /&gt;&lt;br /&gt;        &amp;#60;controlsToolkit&amp;#58;TreeViewDragDropTarget msWindows&amp;#58;DragDrop.AllowDrop&amp;#61;&amp;#34;true&amp;#34;  HorizontalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34; VerticalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;slt&amp;#58;TreeView x&amp;#58;Name&amp;#61;&amp;#34;TreeView&amp;#34; VerticalAlignment&amp;#61;&amp;#34;Stretch&amp;#34; HorizontalAlignment&amp;#61;&amp;#34;Stretch&amp;#34; Grid.Row&amp;#61;&amp;#34;1&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;controlsToolkit&amp;#58;TreeViewDragDropTarget&amp;#62;&lt;br /&gt;&lt;br /&gt;With a constructor in TreeViewDragDrop.xaml.cs&lt;br /&gt;&lt;br /&gt;       public TreeViewDragDrop&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            InitializeComponent&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt; &lt;br /&gt;           TreeViewItem tiRoot &amp;#61; new TreeViewItem&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;           tiRoot.Header &amp;#61; &amp;#34;root&amp;#34;&amp;#59;&lt;br /&gt;           this.TreeView.Items.Add&amp;#40;tiRoot&amp;#41;&amp;#59;&lt;br /&gt;           TreeViewItem ti1 &amp;#61; new TreeViewItem&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;           ti1.Header &amp;#61; &amp;#34;n1&amp;#34;&amp;#59;&lt;br /&gt;           tiRoot.Items.Add&amp;#40;ti1&amp;#41;&amp;#59;&lt;br /&gt;           TreeViewItem ti2 &amp;#61; new TreeViewItem&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;           ti2.Header &amp;#61; &amp;#34;n2&amp;#34;&amp;#59;&lt;br /&gt;           tiRoot.Items.Add&amp;#40;ti2&amp;#41;&amp;#59;&lt;br /&gt;           TreeViewItem ti11 &amp;#61; new TreeViewItem&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;           ti11.Header &amp;#61; &amp;#34;n11&amp;#34;&amp;#59;&lt;br /&gt;           ti1.Items.Add&amp;#40;ti11&amp;#41;&amp;#59;&lt;br /&gt;           TreeViewItem ti12 &amp;#61; new TreeViewItem&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;           ti12.Header &amp;#61; &amp;#34;n12&amp;#34;&amp;#59;&lt;br /&gt;           ti1.Items.Add&amp;#40;ti12&amp;#41;&amp;#59;&lt;br /&gt;      &amp;#125;&lt;br /&gt; &amp;#125;&lt;br /&gt;&lt;br /&gt;While it seems to work when changing order of between sibling TreeviewItems, I get an exception when moving a TreeViewItem at another level in the tree&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#39;value is not within expected  range&amp;#39; &amp;#40;approximative translation from French&amp;#41;&lt;br /&gt;MS.Internal.XcpImports.MethodEx&amp;#40;IntPtr Ptr, String name, CValue&amp;#91;&amp;#93; cvData&amp;#41; at MS.Internal.XcpImports.MethodPack&amp;#40;IntPtr Ptr, String name, CValue&amp;#91;&amp;#93;, Object&amp;#91;&amp;#93; rawData&amp;#41;&lt;br /&gt;&lt;br /&gt;Am I missing something &amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;</description><author>JEYH6394</author><pubDate>Sun, 01 Nov 2009 07:10:20 GMT</pubDate><guid isPermaLink="false">Created Issue: TreeView Drag&amp;Drop throws exception [4551] 20091101071020A</guid></item><item><title>Commented Issue: Themes don't support Accordion [2428]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=2428</link><description>Originated in forum post&amp;#58; http&amp;#58;&amp;#47;&amp;#47;silverlight.net&amp;#47;forums&amp;#47;t&amp;#47;84372.aspx&lt;br /&gt;Comments: ** Comment from web user: Eisen ** &lt;p&gt;This was addressed with the October release. Thanks guys&amp;#33;&lt;/p&gt;</description><author>Eisen</author><pubDate>Fri, 30 Oct 2009 15:26:38 GMT</pubDate><guid isPermaLink="false">Commented Issue: Themes don't support Accordion [2428] 20091030032638P</guid></item><item><title>Commented Issue: Nested Accordion Browser Resize Failure [4544]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4544</link><description>I find that if I nest an accordion within an accordion it causes an error when resizing the browser. Just paste the following code into MainPage.xaml on a new silverlight application project.&lt;br /&gt;&lt;br /&gt;&amp;#60;UserControl xmlns&amp;#58;layoutToolkit&amp;#61;&amp;#34;clr-namespace&amp;#58;System.Windows.Controls&amp;#59;assembly&amp;#61;System.Windows.Controls.Layout.Toolkit&amp;#34;  x&amp;#58;Class&amp;#61;&amp;#34;SilverlightApplication43.MainPage&amp;#34;&lt;br /&gt;    xmlns&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#47;presentation&amp;#34; &lt;br /&gt;    xmlns&amp;#58;x&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#34;&lt;br /&gt;    xmlns&amp;#58;d&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;expression&amp;#47;blend&amp;#47;2008&amp;#34; xmlns&amp;#58;mc&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.openxmlformats.org&amp;#47;markup-compatibility&amp;#47;2006&amp;#34; &lt;br /&gt;    mc&amp;#58;Ignorable&amp;#61;&amp;#34;d&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt;    &amp;#60;Grid x&amp;#58;Name&amp;#61;&amp;#34;LayoutRoot&amp;#34;&amp;#62;&lt;br /&gt;        &amp;#60;layoutToolkit&amp;#58;Accordion SelectionMode&amp;#61;&amp;#34;One&amp;#34; &lt;br /&gt;                                 ExpandDirection&amp;#61;&amp;#34;Right&amp;#34; &lt;br /&gt;                                 HorizontalAlignment&amp;#61;&amp;#34;Stretch&amp;#34; VerticalAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &amp;#62;&lt;br /&gt;            &amp;#60;layoutToolkit&amp;#58;AccordionItem Name&amp;#61;&amp;#34;A&amp;#34;&lt;br /&gt;                                         Header&amp;#61;&amp;#34;A&amp;#34;&lt;br /&gt;                                         VerticalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &lt;br /&gt;                                         HorizontalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt;            &amp;#60;&amp;#47;layoutToolkit&amp;#58;AccordionItem&amp;#62;&lt;br /&gt;            &amp;#60;layoutToolkit&amp;#58;AccordionItem Name&amp;#61;&amp;#34;B&amp;#34;&lt;br /&gt;                                         Header&amp;#61;&amp;#34;B&amp;#34; &lt;br /&gt;                                         VerticalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &lt;br /&gt;                                         HorizontalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt;            &amp;#60;&amp;#47;layoutToolkit&amp;#58;AccordionItem&amp;#62;&lt;br /&gt;            &amp;#60;layoutToolkit&amp;#58;AccordionItem Name&amp;#61;&amp;#34;C&amp;#34;&lt;br /&gt;                                         Header&amp;#61;&amp;#34;C&amp;#34;&lt;br /&gt;                                         VerticalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &lt;br /&gt;                                         HorizontalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&amp;#62;&lt;br /&gt;                &amp;#60;Grid&amp;#62;&lt;br /&gt;                    &amp;#60;Grid.ColumnDefinitions&amp;#62;&lt;br /&gt;                        &amp;#60;ColumnDefinition Width&amp;#61;&amp;#34;.20&amp;#42;&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;                        &amp;#60;ColumnDefinition Width&amp;#61;&amp;#34;.80&amp;#42;&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;                    &amp;#60;&amp;#47;Grid.ColumnDefinitions&amp;#62;&lt;br /&gt;&lt;br /&gt;                    &amp;#60;layoutToolkit&amp;#58;Accordion SelectionMode&amp;#61;&amp;#34;One&amp;#34; &lt;br /&gt;                                 ExpandDirection&amp;#61;&amp;#34;Down&amp;#34; &lt;br /&gt;                                 HorizontalAlignment&amp;#61;&amp;#34;Stretch&amp;#34; VerticalAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&lt;br /&gt;                                 Grid.Column&amp;#61;&amp;#34;1&amp;#34;&amp;#62;&lt;br /&gt;                        &amp;#60;layoutToolkit&amp;#58;AccordionItem Name&amp;#61;&amp;#34;One&amp;#34;&lt;br /&gt;                                         Header&amp;#61;&amp;#34;One&amp;#34;&lt;br /&gt;                                         VerticalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &lt;br /&gt;                                         HorizontalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&amp;#62;&lt;br /&gt;                        &amp;#60;&amp;#47;layoutToolkit&amp;#58;AccordionItem&amp;#62;&lt;br /&gt;                        &amp;#60;layoutToolkit&amp;#58;AccordionItem Name&amp;#61;&amp;#34;Two&amp;#34;&lt;br /&gt;                                         Header&amp;#61;&amp;#34;Two&amp;#34; &lt;br /&gt;                                         VerticalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &lt;br /&gt;                                         HorizontalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&amp;#62;&lt;br /&gt;                        &amp;#60;&amp;#47;layoutToolkit&amp;#58;AccordionItem&amp;#62;&lt;br /&gt;                        &amp;#60;layoutToolkit&amp;#58;AccordionItem Name&amp;#61;&amp;#34;Three&amp;#34;&lt;br /&gt;                                         Header&amp;#61;&amp;#34;Three&amp;#34; &lt;br /&gt;                                         VerticalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &lt;br /&gt;                                         HorizontalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&amp;#62;&lt;br /&gt;                        &amp;#60;&amp;#47;layoutToolkit&amp;#58;AccordionItem&amp;#62;&lt;br /&gt;                    &amp;#60;&amp;#47;layoutToolkit&amp;#58;Accordion&amp;#62;&lt;br /&gt;&lt;br /&gt;                &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;layoutToolkit&amp;#58;AccordionItem&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;layoutToolkit&amp;#58;Accordion&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;    &lt;br /&gt;&amp;#60;&amp;#47;UserControl&amp;#62;&lt;br /&gt;Comments: ** Comment from web user: Eisen ** &lt;p&gt;Looking through the source code and the error occurs on line 386 of ExpandableContentControl.cs in the Controls.Layout.Toolkit project. Class ExpandableContentControl in namespace System.Windows.Controls.Primitives. Attached is a screenshot of the error.&lt;/p&gt;&lt;p&gt;Error&amp;#58; &lt;/p&gt;&lt;p&gt;&amp;#123;System.ArgumentException&amp;#58; Value does not fall within the expected range.&lt;br /&gt;   at MS.Internal.XcpImports.CheckHResult&amp;#40;UInt32 hr&amp;#41;&lt;br /&gt;   at MS.Internal.XcpImports.SetValue&amp;#40;INativeCoreTypeWrapper obj, DependencyProperty property, Double d&amp;#41;&lt;br /&gt;   at System.Windows.DependencyObject.SetValue&amp;#40;DependencyProperty property, Double d&amp;#41;&lt;br /&gt;   at System.Windows.FrameworkElement.set_Height&amp;#40;Double value&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Primitives.ExpandableContentControl.SetRevealDimension&amp;#40;&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Primitives.ExpandableContentControl.OnPercentagePropertyChanged&amp;#40;DependencyObject d, DependencyPropertyChangedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.DependencyObject.RaisePropertyChangeNotifications&amp;#40;DependencyProperty dp, Object newValue, Object oldValue&amp;#41;&lt;br /&gt;   at System.Windows.DependencyObject.SetValueInternal&amp;#40;DependencyProperty dp, Object value, Boolean allowReadOnlySet, Boolean isSetByStyle, Boolean isSetByBuiltInStyle, PropertyInvalidationReason reason&amp;#41;&lt;br /&gt;   at System.Windows.DependencyObject.SetValueInternal&amp;#40;DependencyProperty dp, Object value&amp;#41;&lt;br /&gt;   at System.Windows.DependencyObject.SetValue&amp;#40;DependencyProperty dp, Object value&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Primitives.ExpandableContentControl.set_Percentage&amp;#40;Double value&amp;#41;&lt;br /&gt;   at System.Windows.Controls.AccordionItem.OnContentTargetSizePropertyChanged&amp;#40;DependencyObject d, DependencyPropertyChangedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.DependencyObject.RaisePropertyChangeNotifications&amp;#40;DependencyProperty dp, Object newValue, Object oldValue&amp;#41;&lt;br /&gt;   at System.Windows.DependencyObject.SetValueInternal&amp;#40;DependencyProperty dp, Object value, Boolean allowReadOnlySet, Boolean isSetByStyle, Boolean isSetByBuiltInStyle, PropertyInvalidationReason reason&amp;#41;&lt;br /&gt;   at System.Windows.DependencyObject.SetValueInternal&amp;#40;DependencyProperty dp, Object value&amp;#41;&lt;br /&gt;   at System.Windows.DependencyObject.SetValue&amp;#40;DependencyProperty dp, Object value&amp;#41;&lt;br /&gt;   at System.Windows.Controls.AccordionItem.set_ContentTargetSize&amp;#40;Size value&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Accordion.LayoutChildren&amp;#40;&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Accordion.OnAccordionSizeChanged&amp;#40;Object sender, SizeChangedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.FrameworkElement.OnSizeChanged&amp;#40;Object sender, SizeChangedEventArgs e&amp;#41;&lt;br /&gt;   at MS.Internal.JoltHelper.RaiseEvent&amp;#40;IntPtr target, UInt32 eventId, IntPtr coreEventArgs, UInt32 eventArgsTypeIndex&amp;#41;&amp;#125;&lt;/p&gt;</description><author>Eisen</author><pubDate>Fri, 30 Oct 2009 05:02:07 GMT</pubDate><guid isPermaLink="false">Commented Issue: Nested Accordion Browser Resize Failure [4544] 20091030050207A</guid></item><item><title>Commented Issue: Nested Accordion Browser Resize Failure [4544]</title><link>http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=4544</link><description>I find that if I nest an accordion within an accordion it causes an error when resizing the browser. Just paste the following code into MainPage.xaml on a new silverlight application project.&lt;br /&gt;&lt;br /&gt;&amp;#60;UserControl xmlns&amp;#58;layoutToolkit&amp;#61;&amp;#34;clr-namespace&amp;#58;System.Windows.Controls&amp;#59;assembly&amp;#61;System.Windows.Controls.Layout.Toolkit&amp;#34;  x&amp;#58;Class&amp;#61;&amp;#34;SilverlightApplication43.MainPage&amp;#34;&lt;br /&gt;    xmlns&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#47;presentation&amp;#34; &lt;br /&gt;    xmlns&amp;#58;x&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#34;&lt;br /&gt;    xmlns&amp;#58;d&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;expression&amp;#47;blend&amp;#47;2008&amp;#34; xmlns&amp;#58;mc&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.openxmlformats.org&amp;#47;markup-compatibility&amp;#47;2006&amp;#34; &lt;br /&gt;    mc&amp;#58;Ignorable&amp;#61;&amp;#34;d&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt;    &amp;#60;Grid x&amp;#58;Name&amp;#61;&amp;#34;LayoutRoot&amp;#34;&amp;#62;&lt;br /&gt;        &amp;#60;layoutToolkit&amp;#58;Accordion SelectionMode&amp;#61;&amp;#34;One&amp;#34; &lt;br /&gt;                                 ExpandDirection&amp;#61;&amp;#34;Right&amp;#34; &lt;br /&gt;                                 HorizontalAlignment&amp;#61;&amp;#34;Stretch&amp;#34; VerticalAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &amp;#62;&lt;br /&gt;            &amp;#60;layoutToolkit&amp;#58;AccordionItem Name&amp;#61;&amp;#34;A&amp;#34;&lt;br /&gt;                                         Header&amp;#61;&amp;#34;A&amp;#34;&lt;br /&gt;                                         VerticalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &lt;br /&gt;                                         HorizontalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt;            &amp;#60;&amp;#47;layoutToolkit&amp;#58;AccordionItem&amp;#62;&lt;br /&gt;            &amp;#60;layoutToolkit&amp;#58;AccordionItem Name&amp;#61;&amp;#34;B&amp;#34;&lt;br /&gt;                                         Header&amp;#61;&amp;#34;B&amp;#34; &lt;br /&gt;                                         VerticalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &lt;br /&gt;                                         HorizontalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt;            &amp;#60;&amp;#47;layoutToolkit&amp;#58;AccordionItem&amp;#62;&lt;br /&gt;            &amp;#60;layoutToolkit&amp;#58;AccordionItem Name&amp;#61;&amp;#34;C&amp;#34;&lt;br /&gt;                                         Header&amp;#61;&amp;#34;C&amp;#34;&lt;br /&gt;                                         VerticalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &lt;br /&gt;                                         HorizontalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&amp;#62;&lt;br /&gt;                &amp;#60;Grid&amp;#62;&lt;br /&gt;                    &amp;#60;Grid.ColumnDefinitions&amp;#62;&lt;br /&gt;                        &amp;#60;ColumnDefinition Width&amp;#61;&amp;#34;.20&amp;#42;&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;                        &amp;#60;ColumnDefinition Width&amp;#61;&amp;#34;.80&amp;#42;&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;                    &amp;#60;&amp;#47;Grid.ColumnDefinitions&amp;#62;&lt;br /&gt;&lt;br /&gt;                    &amp;#60;layoutToolkit&amp;#58;Accordion SelectionMode&amp;#61;&amp;#34;One&amp;#34; &lt;br /&gt;                                 ExpandDirection&amp;#61;&amp;#34;Down&amp;#34; &lt;br /&gt;                                 HorizontalAlignment&amp;#61;&amp;#34;Stretch&amp;#34; VerticalAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&lt;br /&gt;                                 Grid.Column&amp;#61;&amp;#34;1&amp;#34;&amp;#62;&lt;br /&gt;                        &amp;#60;layoutToolkit&amp;#58;AccordionItem Name&amp;#61;&amp;#34;One&amp;#34;&lt;br /&gt;                                         Header&amp;#61;&amp;#34;One&amp;#34;&lt;br /&gt;                                         VerticalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &lt;br /&gt;                                         HorizontalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&amp;#62;&lt;br /&gt;                        &amp;#60;&amp;#47;layoutToolkit&amp;#58;AccordionItem&amp;#62;&lt;br /&gt;                        &amp;#60;layoutToolkit&amp;#58;AccordionItem Name&amp;#61;&amp;#34;Two&amp;#34;&lt;br /&gt;                                         Header&amp;#61;&amp;#34;Two&amp;#34; &lt;br /&gt;                                         VerticalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &lt;br /&gt;                                         HorizontalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&amp;#62;&lt;br /&gt;                        &amp;#60;&amp;#47;layoutToolkit&amp;#58;AccordionItem&amp;#62;&lt;br /&gt;                        &amp;#60;layoutToolkit&amp;#58;AccordionItem Name&amp;#61;&amp;#34;Three&amp;#34;&lt;br /&gt;                                         Header&amp;#61;&amp;#34;Three&amp;#34; &lt;br /&gt;                                         VerticalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &lt;br /&gt;                                         HorizontalContentAlignment&amp;#61;&amp;#34;Stretch&amp;#34;&amp;#62;&lt;br /&gt;                        &amp;#60;&amp;#47;layoutToolkit&amp;#58;AccordionItem&amp;#62;&lt;br /&gt;                    &amp;#60;&amp;#47;layoutToolkit&amp;#58;Accordion&amp;#62;&lt;br /&gt;&lt;br /&gt;                &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;layoutToolkit&amp;#58;AccordionItem&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;layoutToolkit&amp;#58;Accordion&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;    &lt;br /&gt;&amp;#60;&amp;#47;UserControl&amp;#62;&lt;br /&gt;Comments: ** Comment from web user: Eisen ** &lt;p&gt;Just a note I just upgraded to the October toolkit release and still having the problem. Hopefully this isn&amp;#39;t too difficult to fix.&lt;/p&gt;</description><author>Eisen</author><pubDate>Fri, 30 Oct 2009 04:41:53 GMT</pubDate><guid isPermaLink="false">Commented Issue: Nested Accordion Browser Resize Failure [4544] 20091030044153A</guid></item></channel></rss>