<?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://www.codeplex.com/Silverlight/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>Created Issue: TreeView does not select the correct item when setting IsSelected and parent is not expanded</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1375</link><description>Originated from forum post&amp;#58; http&amp;#58;&amp;#47;&amp;#47;silverlight.net&amp;#47;forums&amp;#47;t&amp;#47;60645.aspx&lt;br /&gt;&lt;br /&gt;TreeView does not select the correct item when setting IsSelected and parent TreeViewItem is not expanded.&lt;br /&gt;&lt;br /&gt;When setting TreeViewItem.IsSelected and the TreeViewItem is not visible &amp;#40;because it&amp;#39;s parent TreeViewItem is collapsed&amp;#41; it does not become the TreeViewItem.SelectedItem. Rather, the first item in the TreeView does. &lt;br /&gt;&lt;br /&gt;Repro&amp;#58;&lt;br /&gt;&amp;#60;Canvas&amp;#62;&lt;br /&gt;    &amp;#60;controls&amp;#58;TreeView x&amp;#58;Name&amp;#61;&amp;#34;theTree&amp;#34; Width&amp;#61;&amp;#34;250&amp;#34; Height&amp;#61;&amp;#34;250&amp;#34;&amp;#62;&lt;br /&gt;        &amp;#60;controls&amp;#58;TreeViewItem Header&amp;#61;&amp;#34;hello&amp;#34; x&amp;#58;Name&amp;#61;&amp;#34;hello&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;controls&amp;#58;TreeViewItem Header&amp;#61;&amp;#34;fruits&amp;#34; x&amp;#58;Name&amp;#61;&amp;#34;fruits&amp;#34; IsExpanded&amp;#61;&amp;#34;False&amp;#34; &amp;#62;&lt;br /&gt;            &amp;#60;controls&amp;#58;TreeViewItem Header&amp;#61;&amp;#34;apple&amp;#34; x&amp;#58;Name&amp;#61;&amp;#34;apple&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;            &amp;#60;controls&amp;#58;TreeViewItem Header&amp;#61;&amp;#34;orange&amp;#34; x&amp;#58;Name&amp;#61;&amp;#34;orange&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;controls&amp;#58;TreeViewItem&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;controls&amp;#58;TreeView&amp;#62;&lt;br /&gt;    &amp;#60;Button Canvas.Top&amp;#61;&amp;#34;270&amp;#34; Content&amp;#61;&amp;#34;Select apple &amp;#34; x&amp;#58;Name&amp;#61;&amp;#34;btnSelectApple&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;Canvas&amp;#62;&lt;br /&gt;&lt;br /&gt;        public Window7&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            InitializeComponent&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            btnSelectApple.Click &amp;#43;&amp;#61; new RoutedEventHandler&amp;#40;btnSelectApple_Click&amp;#41;&amp;#59;&lt;br /&gt;            theTree.SelectedItemChanged &amp;#43;&amp;#61; new RoutedPropertyChangedEventHandler&amp;#60;object&amp;#62;&amp;#40;theTree_SelectedItemChanged&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;        void theTree_SelectedItemChanged&amp;#40;object sender, RoutedPropertyChangedEventArgs&amp;#60;object&amp;#62; e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            btnSelectApple.Content &amp;#61; &amp;#40;&amp;#40;TreeViewItem&amp;#41;e.NewValue&amp;#41;.Header&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;        void btnSelectApple_Click&amp;#40;object sender, RoutedEventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            apple.IsSelected &amp;#61; true&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;1. Click the Button. &lt;br /&gt;&lt;br /&gt;Result&amp;#58;&lt;br /&gt;In Silverlight, the button content becomes &amp;#34;hello&amp;#34;. That is because setting the TreeViewItem.IsSelected&amp;#61;True when the TreeViewItem is not visible, causes the 1st item to get selected. &lt;br /&gt;In WPF, the button content becomes &amp;#34;apple&amp;#34;. That is the correct behavior.&lt;br /&gt;</description><author>JustinJosefAngel</author><pubDate>Fri, 09 Jan 2009 04:04:29 GMT</pubDate><guid isPermaLink="false">Created Issue: TreeView does not select the correct item when setting IsSelected and parent is not expanded 20090109040429A</guid></item><item><title>Created Issue: ImplicitStyleManager does not support drilling down into Popups</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1374</link><description>ImplicitStyleManager does not support drilling down into Popups natively. &lt;br /&gt;&lt;br /&gt;Repro&amp;#58; &lt;br /&gt;&amp;#123;code&amp;#58;xml&amp;#125;&lt;br /&gt;&amp;#60;Grid x&amp;#58;Name&amp;#61;&amp;#34;LayoutRoot&amp;#34; Background&amp;#61;&amp;#34;White&amp;#34; Theming&amp;#58;ImplicitStyleManager.ApplyMode&amp;#61;&amp;#34;Auto&amp;#34; &lt;br /&gt;      Theming&amp;#58;ImplicitStyleManager.ResourceDictionaryUri&amp;#61;&amp;#34;SL_RTM_VS&amp;#59;component&amp;#47;Microsoft.Windows.Controls.Theming.RainierOrange.xaml&amp;#34;&amp;#62;&lt;br /&gt;    &amp;#60;Button Content&amp;#61;&amp;#34;Hello World&amp;#34; HorizontalAlignment&amp;#61;&amp;#34;Stretch&amp;#34;  VerticalAlignment&amp;#61;&amp;#34;Top&amp;#34; Click&amp;#61;&amp;#34;Button_Click&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;    &amp;#60;Popup x&amp;#58;Name&amp;#61;&amp;#34;popup&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;Button Content&amp;#61;&amp;#34;Hello World&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Popup&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;&amp;#123;code&amp;#58;xml&amp;#125;&lt;br /&gt;&amp;#123;code&amp;#58;c&amp;#35;&amp;#125;&lt;br /&gt;private void Button_Click&amp;#40;object sender, RoutedEventArgs e&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;    popup.IsOpen &amp;#61; &amp;#33;popup.IsOpen&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#123;code&amp;#58;c&amp;#35;&amp;#125;&lt;br /&gt;&lt;br /&gt;When running this code the internal button in the Popup.Child will not get styled. &lt;br /&gt;&lt;br /&gt;The problem is caused due to a namescoping issue with Popup.Child not being in the Visual tree.&lt;br /&gt;&lt;br /&gt;Workaround&amp;#58;&lt;br /&gt;&amp;#123;code&amp;#58;c&amp;#35;&amp;#125;&lt;br /&gt;popup.LayoutUpdated &amp;#43;&amp;#61; new EventHandler&amp;#40;popup_LayoutUpdated&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;        void popup_LayoutUpdated&amp;#40;object sender, EventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;           popup.LayoutUpdated -&amp;#61; new EventHandler&amp;#40;popup_LayoutUpdated&amp;#41;&amp;#59;&lt;br /&gt;            ImplicitStyleManager.SetApplyMode&amp;#40;&amp;#40;FrameworkElement&amp;#41; popup.Child, ImplicitStylesApplyMode.Auto&amp;#41;&amp;#59;&lt;br /&gt;            ImplicitStyleManager.SetResourceDictionaryUri&amp;#40;&amp;#40;FrameworkElement&amp;#41; popup.Child, new Uri&amp;#40;&amp;#34;SL_RTM_VS&amp;#59;component&amp;#47;Microsoft.Windows.Controls.Theming.RainierOrange.xaml&amp;#34;, UriKind.Relative&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&amp;#123;code&amp;#58;c&amp;#35;&amp;#125;&lt;br /&gt;</description><author>JustinJosefAngel</author><pubDate>Fri, 09 Jan 2009 03:12:44 GMT</pubDate><guid isPermaLink="false">Created Issue: ImplicitStyleManager does not support drilling down into Popups 20090109031244A</guid></item><item><title>Closed Issue: Combobox databinding issue</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1371</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I am getting the below exception when trying to bind the data to Combo box through List&amp;#60;T&amp;#62;.&lt;br /&gt;&lt;br /&gt;Message&amp;#58; &amp;#34;Error HRESULT E_FAIL has been returned from a call to a COM component.&amp;#34;&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;&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.Control.set_DefaultStyleKey&amp;#40;Object value&amp;#41;&lt;br /&gt;   at System.Windows.Controls.ContentControl..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at System.Windows.CoreTypes.GetCoreWrapper&amp;#40;Int32 typeId&amp;#41;&lt;br /&gt;   at MS.Internal.ManagedPeerTable.EnsureManagedPeer&amp;#40;IntPtr unmanagedPointer, Int32 typeIndex, Type type, Boolean preserveManagedObjectReference&amp;#41;&lt;br /&gt;   at MS.Internal.ManagedPeerTable.EnsureManagedPeer&amp;#40;IntPtr unmanagedPointer, Int32 typeIndex, Type type&amp;#41;&lt;br /&gt;   at MS.Internal.XcpImports.ConvertDO&amp;#40;IntPtr doPointer, Int32 typeIndex, Boolean releaseObjectReference&amp;#41;&lt;br /&gt;   at MS.Internal.XcpImports.ConvertType&amp;#40;CValue outVal, Int32 typeIndex, Boolean releaseObjectReference&amp;#41;&lt;br /&gt;   at MS.Internal.XcpImports.FocusManager_GetFocusedElement&amp;#40;&amp;#41;&lt;br /&gt;   at System.Windows.Input.FocusManager.GetFocusedElement&amp;#40;&amp;#41;   at System.Windows.Controls.ComboBox.HasFocus&amp;#40;&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Primitives.Selector.SetFocusedItem&amp;#40;Int32 index, Boolean scrollIntoView&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Primitives.Selector.OnItemsChanged&amp;#40;NotifyCollectionChangedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.Controls.ItemsControl.RaiseOnItemsChanged&amp;#40;NotifyCollectionChangedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.Controls.ItemCollection.NotifyItemsControl&amp;#40;NotifyCollectionChangedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.Controls.ItemCollection.AddInternal&amp;#40;Object value&amp;#41;&lt;br /&gt;   at System.Windows.PresentationFrameworkCollection&amp;#96;1.Add&amp;#40;T value&amp;#41;&lt;br /&gt;Comments: I'm closing this issue because ComboBox isn't a control in the Silverlight Toolkit.  A better place to discuss this issue would be on the Controls forum on Silverlight.net.</description><author>shawnoster</author><pubDate>Thu, 08 Jan 2009 23:26:48 GMT</pubDate><guid isPermaLink="false">Closed Issue: Combobox databinding issue 20090108112648P</guid></item><item><title>Commented Feature: Is it possible to program the scroll wheel in the examples.</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=878</link><description>I was wonder if perhaps in the next control samples release they could program the scroll wheel on the longer siverlight views.  &lt;br /&gt;&lt;br /&gt;I find myself clicking the right pane and rolling the scroll wheel down by instinct, all the time. &lt;br /&gt;&lt;br /&gt;A suggestion for possible improvement..&lt;br /&gt;Comments: ** Comment from web user: anvimi ** &lt;p&gt;Yeah, pretty annoying to say the least, hopefully it&amp;#39;s not &amp;#34;by design&amp;#34; and will be fixed in the next releases.&lt;/p&gt;</description><author>anvimi</author><pubDate>Thu, 08 Jan 2009 20:11:19 GMT</pubDate><guid isPermaLink="false">Commented Feature: Is it possible to program the scroll wheel in the examples. 20090108081119P</guid></item><item><title>Commented Issue: Combobox databinding issue</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1371</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I am getting the below exception when trying to bind the data to Combo box through List&amp;#60;T&amp;#62;.&lt;br /&gt;&lt;br /&gt;Message&amp;#58; &amp;#34;Error HRESULT E_FAIL has been returned from a call to a COM component.&amp;#34;&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;&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.Control.set_DefaultStyleKey&amp;#40;Object value&amp;#41;&lt;br /&gt;   at System.Windows.Controls.ContentControl..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at System.Windows.CoreTypes.GetCoreWrapper&amp;#40;Int32 typeId&amp;#41;&lt;br /&gt;   at MS.Internal.ManagedPeerTable.EnsureManagedPeer&amp;#40;IntPtr unmanagedPointer, Int32 typeIndex, Type type, Boolean preserveManagedObjectReference&amp;#41;&lt;br /&gt;   at MS.Internal.ManagedPeerTable.EnsureManagedPeer&amp;#40;IntPtr unmanagedPointer, Int32 typeIndex, Type type&amp;#41;&lt;br /&gt;   at MS.Internal.XcpImports.ConvertDO&amp;#40;IntPtr doPointer, Int32 typeIndex, Boolean releaseObjectReference&amp;#41;&lt;br /&gt;   at MS.Internal.XcpImports.ConvertType&amp;#40;CValue outVal, Int32 typeIndex, Boolean releaseObjectReference&amp;#41;&lt;br /&gt;   at MS.Internal.XcpImports.FocusManager_GetFocusedElement&amp;#40;&amp;#41;&lt;br /&gt;   at System.Windows.Input.FocusManager.GetFocusedElement&amp;#40;&amp;#41;   at System.Windows.Controls.ComboBox.HasFocus&amp;#40;&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Primitives.Selector.SetFocusedItem&amp;#40;Int32 index, Boolean scrollIntoView&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Primitives.Selector.OnItemsChanged&amp;#40;NotifyCollectionChangedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.Controls.ItemsControl.RaiseOnItemsChanged&amp;#40;NotifyCollectionChangedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.Controls.ItemCollection.NotifyItemsControl&amp;#40;NotifyCollectionChangedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.Controls.ItemCollection.AddInternal&amp;#40;Object value&amp;#41;&lt;br /&gt;   at System.Windows.PresentationFrameworkCollection&amp;#96;1.Add&amp;#40;T value&amp;#41;&lt;br /&gt;Comments: ** Comment from web user: rajesh_a_kumar ** &lt;p&gt;Can someone please mark it as Critical &amp;#63;  I am unable to change the status.&lt;/p&gt;</description><author>rajesh_a_kumar</author><pubDate>Thu, 08 Jan 2009 06:38:27 GMT</pubDate><guid isPermaLink="false">Commented Issue: Combobox databinding issue 20090108063827A</guid></item><item><title>Created Issue: Combobox databinding issue</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1371</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I am getting the below exception when trying to bind the data to Combo box through List&amp;#60;T&amp;#62;.&lt;br /&gt;&lt;br /&gt;Message&amp;#58; &amp;#34;Error HRESULT E_FAIL has been returned from a call to a COM component.&amp;#34;&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;&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.Control.set_DefaultStyleKey&amp;#40;Object value&amp;#41;&lt;br /&gt;   at System.Windows.Controls.ContentControl..ctor&amp;#40;&amp;#41;&lt;br /&gt;   at System.Windows.CoreTypes.GetCoreWrapper&amp;#40;Int32 typeId&amp;#41;&lt;br /&gt;   at MS.Internal.ManagedPeerTable.EnsureManagedPeer&amp;#40;IntPtr unmanagedPointer, Int32 typeIndex, Type type, Boolean preserveManagedObjectReference&amp;#41;&lt;br /&gt;   at MS.Internal.ManagedPeerTable.EnsureManagedPeer&amp;#40;IntPtr unmanagedPointer, Int32 typeIndex, Type type&amp;#41;&lt;br /&gt;   at MS.Internal.XcpImports.ConvertDO&amp;#40;IntPtr doPointer, Int32 typeIndex, Boolean releaseObjectReference&amp;#41;&lt;br /&gt;   at MS.Internal.XcpImports.ConvertType&amp;#40;CValue outVal, Int32 typeIndex, Boolean releaseObjectReference&amp;#41;&lt;br /&gt;   at MS.Internal.XcpImports.FocusManager_GetFocusedElement&amp;#40;&amp;#41;&lt;br /&gt;   at System.Windows.Input.FocusManager.GetFocusedElement&amp;#40;&amp;#41;   at System.Windows.Controls.ComboBox.HasFocus&amp;#40;&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Primitives.Selector.SetFocusedItem&amp;#40;Int32 index, Boolean scrollIntoView&amp;#41;&lt;br /&gt;   at System.Windows.Controls.Primitives.Selector.OnItemsChanged&amp;#40;NotifyCollectionChangedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.Controls.ItemsControl.RaiseOnItemsChanged&amp;#40;NotifyCollectionChangedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.Controls.ItemCollection.NotifyItemsControl&amp;#40;NotifyCollectionChangedEventArgs e&amp;#41;&lt;br /&gt;   at System.Windows.Controls.ItemCollection.AddInternal&amp;#40;Object value&amp;#41;&lt;br /&gt;   at System.Windows.PresentationFrameworkCollection&amp;#96;1.Add&amp;#40;T value&amp;#41;&lt;br /&gt;</description><author>rajesh_a_kumar</author><pubDate>Thu, 08 Jan 2009 06:36:32 GMT</pubDate><guid isPermaLink="false">Created Issue: Combobox databinding issue 20090108063632A</guid></item><item><title>Closed Issue: Theming Error when add DataGrid Control to TabItem</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1229</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I use ImplicitStyleManager to them my silverlight page, but I got error when I add DataGrid to TabItem control. I try to replace DataGrid with a Button then It works well. could you all pay some attention to this error&amp;#63; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Boren&lt;br /&gt;&lt;br /&gt;Thank&amp;#33;&lt;br /&gt;Comments: Closing as a duplicate of workitem #981&lt;br /&gt;http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=981</description><author>shawnoster</author><pubDate>Tue, 06 Jan 2009 23:26:05 GMT</pubDate><guid isPermaLink="false">Closed Issue: Theming Error when add DataGrid Control to TabItem 20090106112605P</guid></item><item><title>Reopened Issue: AutoCompleteBox: Make SelectedItem property settable</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1117</link><description>Originatin from the following post&amp;#58;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;silverlight.net&amp;#47;forums&amp;#47;p&amp;#47;56216&amp;#47;144632.aspx&amp;#35;144632&lt;br /&gt;&lt;br /&gt;Feature request&amp;#58;&lt;br /&gt;The SeletedItem property is now read-only.&lt;br /&gt;Make it settable so an existing item in the ItemsSource can be programatically selected.&lt;br /&gt;&lt;br /&gt;Setting the SelectedItem would change the Text property and raise the SelectionChanged event.&lt;br /&gt;If the item was not in the list it would update the text but not raise any events.&lt;br /&gt;Basically the same behavior as when you typed a word which was not in the list.&lt;br /&gt;</description><author>slkit</author><pubDate>Tue, 06 Jan 2009 23:14:38 GMT</pubDate><guid isPermaLink="false">Reopened Issue: AutoCompleteBox: Make SelectedItem property settable 20090106111438P</guid></item><item><title>Reopened Issue: Poor performance of sample application</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1127</link><description>The performance of the sample page is horrible. this cannot be it. what is the good of animations if they dont run smoothly&amp;#63;&lt;br /&gt;that is certainly not how silverlight was meant to perform.&lt;br /&gt;i imagine lots of images etc. have been added as uncompiled resources loaded at runtime. they need to be compiled, otherwise&lt;br /&gt;the thing doesent look nice at all.&lt;br /&gt;great job, though&amp;#33;&lt;br /&gt;</description><author>slkit</author><pubDate>Tue, 06 Jan 2009 23:14:33 GMT</pubDate><guid isPermaLink="false">Reopened Issue: Poor performance of sample application 20090106111433P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Home&amp;version=73</link><description>&lt;div class="wikidoc"&gt;
&lt;h1&gt;
What is the Silverlight Toolkit?
&lt;/h1&gt;The Silverlight Toolkit is a collection of Silverlight controls, components and utilities made available outside the normal Silverlight release cycle. It adds new functionality quickly for designers and developers, and provides the community an efficient way to help shape product development by contributing ideas and bug reports. It includes full source code, unit tests, samples and documentation for 12 new controls covering charting, styling, layout, and user input.&lt;br /&gt; &lt;br /&gt;&lt;h1&gt;
Get Started
&lt;/h1&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Release/ProjectReleases.aspx" class="externalLink"&gt;Download the latest release&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;Visit our &lt;a href="http://silverlight.net/samples/sl2/toolkitcontrolsamples/run/default.html" class="externalLink"&gt;online Silverlight Toolkit sample&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Take the guided tour of the Silverlight Toolkit: &lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%201&amp;amp;referringTitle=Home"&gt;Part 1 - Controls&lt;/a&gt;, &lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%202&amp;amp;referringTitle=Home"&gt;Part 2 - Charting&lt;/a&gt; and &lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%203&amp;amp;referringTitle=Home"&gt;Part 3 - Theming&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h1&gt;
Suggestions? Features? Questions?  
&lt;/h1&gt;&lt;ul&gt;
&lt;li&gt;Ask questions in our &lt;b&gt;&lt;a href="http://silverlight.net/forums/35.aspx" class="externalLink"&gt;Silverlight Toolkit forum&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt; on &lt;a href="http://silverlight.net" class="externalLink"&gt;Silverlight.net&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  The forum is the best resource for Silverlight Toolkit Q&amp;amp;A.&lt;/li&gt;&lt;li&gt;Add bugs or feature requests to the &lt;a href="http://www.codeplex.com/Silverlight/WorkItem/List.aspx" class="externalLink"&gt;Issue Tracker&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. Help us shape the Silverlight Toolkit with your feedback!&lt;/li&gt;&lt;li&gt;Read more about the Silverlight Toolkit on our &lt;a href="http://feeds.feedburner.com/SilverlightToolkitTeamMembersBlogFeeds" class="externalLink"&gt;Team Members RSS feed&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h1&gt;
How is the Silverlight Toolkit Built?
&lt;/h1&gt;We use an iterative, evolutionary development model to release new controls and updates often and get feedback from the community to our development team quickly. With access to source code, unit tests and the infrastructure magic we use internally, the community can let us know what it likes and what it wants to change. Anyone can download the source code and start exploring. This transparency will allow the community to help us prioritize features based on real-world usage and actual customer scenarios. We also want to make it easy to reuse skills and source code which is why all our components are designed with Windows Presentation Foundation in mind and the Silverlight Toolkit is released under the Microsoft Public License.&lt;br /&gt; &lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=Silverlight&amp;amp;DownloadId=47808" alt="Controls Example" /&gt;&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;h1&gt;
Silverlight Toolkit December 2008 Overview
&lt;/h1&gt;The Silverlight Toolkit defines four &lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Quality%20Bands&amp;amp;referringTitle=Home"&gt;Quality Bands&lt;/a&gt; that describe the stability and finish-level of each component. Below is a summary of where the components currently in the Silverlight Toolkit fall within the quality bands. Read the complete list of &lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20December%202008%20change%20list&amp;amp;referringTitle=Home"&gt;changes in the Silverlight Toolkit December 2008 release&lt;/a&gt; from the November 2008 release. &lt;br /&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Components in the &lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Quality%20Bands&amp;amp;referringTitle=Home&amp;amp;ANCHOR#Stable"&gt;Stable&lt;/a&gt; Quality Band&lt;/b&gt;&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%201&amp;amp;referringTitle=Home&amp;amp;ANCHOR#AutoCompleteBox"&gt;AutoCompleteBox&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%201&amp;amp;referringTitle=Home&amp;amp;ANCHOR#DockPanel"&gt;DockPanel&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%201&amp;amp;referringTitle=Home&amp;amp;ANCHOR#HeaderedContentControl"&gt;HeaderedContentControl&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%201&amp;amp;referringTitle=Home&amp;amp;ANCHOR#HeaderedItemsControl"&gt;HeaderedItemsControl&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20November%202008%20overview&amp;amp;referringTitle=Home&amp;amp;ANCHOR#Label"&gt;Label&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%201&amp;amp;referringTitle=Home&amp;amp;ANCHOR#NumericUpDown"&gt;NumericUpDown&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%201&amp;amp;referringTitle=Home&amp;amp;ANCHOR#TreeView"&gt;TreeView&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%201&amp;amp;referringTitle=Home&amp;amp;ANCHOR#WrapPanel"&gt;WrapPanel&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Components in the  &lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Quality%20Bands&amp;amp;referringTitle=Home&amp;amp;ANCHOR#Preview"&gt;Preview&lt;/a&gt; Quality Band&lt;/b&gt;&lt;/li&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%202&amp;amp;referringTitle=Home"&gt;Charting&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%201&amp;amp;referringTitle=Home&amp;amp;ANCHOR#Expander"&gt;Expander&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%203&amp;amp;referringTitle=Home&amp;amp;ANCHOR#ImplicitStyleManager"&gt;ImplicitStyleManager&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%201&amp;amp;referringTitle=Home&amp;amp;ANCHOR#Viewbox"&gt;Viewbox&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h1&gt;
Themes
&lt;/h1&gt;In addition to great controls, the Toolkit also includes a beautiful assortment of professional themes to make your applications stand out and improve the overall look-and-feel of your Silverlight UI. See the overview on &lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%203&amp;amp;referringTitle=Home"&gt;Theming&lt;/a&gt; for more information.&lt;br /&gt; &lt;br /&gt;&lt;ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%203&amp;amp;referringTitle=Home&amp;amp;ANCHOR#BureauBlackTheme"&gt;Bureau Black&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%203&amp;amp;referringTitle=Home&amp;amp;ANCHOR#BureauBlueTheme"&gt;Bureau Blue&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%203&amp;amp;referringTitle=Home&amp;amp;ANCHOR#ExpressionDarkTheme"&gt;Expression Dark&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%203&amp;amp;referringTitle=Home&amp;amp;ANCHOR#ExpressionLightTheme"&gt;Expression Light&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%203&amp;amp;referringTitle=Home&amp;amp;ANCHOR#RainierPurpleTheme"&gt;Rainier Purple&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%203&amp;amp;referringTitle=Home&amp;amp;ANCHOR#RainierOrangeTheme"&gt;Rainier Orange&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%203&amp;amp;referringTitle=Home&amp;amp;ANCHOR#ShinyBlueTheme"&gt;Shiny Blue&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%203&amp;amp;referringTitle=Home&amp;amp;ANCHOR#ShinyRedTheme"&gt;Shiny Red&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%203&amp;amp;referringTitle=Home&amp;amp;ANCHOR#WhistlerBlueTheme"&gt;Whistler Blue&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;h1&gt;
Team Member's Blogs
&lt;/h1&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://feeds.feedburner.com/SilverlightToolkitTeamMembersBlogFeeds" class="externalLink"&gt;Team Members RSS feed&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/sburke" class="externalLink"&gt;Shawn Burke&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.jeff.wilcox.name" class="externalLink"&gt;Jeff Wilcox&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/mehdis" class="externalLink"&gt;Mehdi Slaoui Andaloussi&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://bea.stollnitz.com/blog" class="externalLink"&gt;Beatriz Stollnitz&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://themechanicalbride.blogspot.com/" class="externalLink"&gt;Jafar Husain&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://blog.enginefour.com" class="externalLink"&gt;Shawn Oster&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/keiths" class="externalLink"&gt;Keith Smith&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/delay" class="externalLink"&gt;David Anson&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://blog.ningzhang.org" class="externalLink"&gt;Ning Zhang&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.sitechno.com/blog/" class="externalLink"&gt;Ruurd John Boeke&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.Silverlight.net" class="externalLink"&gt;Ted Glaza&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/seanboon/" class="externalLink"&gt;Sean Boon&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://silverlight.net/blogs/JustinAngel" class="externalLink"&gt;Justin Angel&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>shawnoster</author><pubDate>Tue, 06 Jan 2009 22:33:47 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090106103347P</guid></item><item><title>Created Issue: Setting focus on TreeView selects first item</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1360</link><description>It seems that whenever you set focus to a TreeView, the selected item changes to the first one. I created a very simple app, with just a tree view and a button-- the button&amp;#39;s code behind is simply a Focus&amp;#40;&amp;#41; call to the tree view. The xaml looks like this&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#60;UserControl x&amp;#58;Class&amp;#61;&amp;#34;TreeViewWeirdness.Page&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;toolkit&amp;#61;&amp;#34;clr-namespace&amp;#58;Microsoft.Windows.Controls&amp;#59;assembly&amp;#61;Microsoft.Windows.Controls&amp;#34;&lt;br /&gt;    Width&amp;#61;&amp;#34;200&amp;#34; Height&amp;#61;&amp;#34;200&amp;#34;&amp;#62;&lt;br /&gt;    &amp;#60;StackPanel x&amp;#58;Name&amp;#61;&amp;#34;LayoutRoot&amp;#34; Background&amp;#61;&amp;#34;White&amp;#34;&amp;#62;       &lt;br /&gt;        &amp;#60;toolkit&amp;#58;TreeView x&amp;#58;Name&amp;#61;&amp;#34;TheTree&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;toolkit&amp;#58;TreeViewItem Header&amp;#61;&amp;#34;Foo&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;            &amp;#60;toolkit&amp;#58;TreeViewItem Header&amp;#61;&amp;#34;Bar&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;            &amp;#60;toolkit&amp;#58;TreeViewItem Header&amp;#61;&amp;#34;Bat&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;            &amp;#60;toolkit&amp;#58;TreeViewItem Header&amp;#61;&amp;#34;Hey&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;toolkit&amp;#58;TreeView&amp;#62;&lt;br /&gt;        &amp;#60;Button Content&amp;#61;&amp;#34;Set Focus On TreeView&amp;#34; Click&amp;#61;&amp;#34;Button_Click&amp;#34; Margin&amp;#61;&amp;#34;10&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;StackPanel&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;UserControl&amp;#62;&lt;br /&gt;&lt;br /&gt;and the C&amp;#35; like this&amp;#58;&lt;br /&gt;&lt;br /&gt;private void Button_Click&amp;#40;object sender, RoutedEventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            TheTree.Focus&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;If you click the button the selected item of the treeview will go to the first item.&lt;br /&gt;&lt;br /&gt;IMHO this behavior is a bug... for our application, it&amp;#39;s causing a very confusing context change as we have a details view driven off of the treeview&amp;#39;s selection changed event... Any plans for a fix&amp;#47;change and&amp;#47;or any suggestions for a workaround &amp;#40;I&amp;#39;m currently looking at overriding the OnGotFocus method&amp;#41;.&lt;br /&gt;</description><author>uooq</author><pubDate>Tue, 06 Jan 2009 20:05:19 GMT</pubDate><guid isPermaLink="false">Created Issue: Setting focus on TreeView selects first item 20090106080519P</guid></item><item><title>Commented Feature: Please port the data visualization(charts) to WPF</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=999</link><description>You have done a great amount of work to come up with some very nice charts for silverlight. &lt;br /&gt;It would be great to have this functionality in WPF environments as well, and the effort should not be too hard &amp;#40;good bang for the buck&amp;#41;.&lt;br /&gt;Thank you,&lt;br /&gt;Mike Castillo&lt;br /&gt;Comments: ** Comment from web user: Wardy ** &lt;p&gt;I wouldn&amp;#39;t bother, i&amp;#39;m sure I saw something about how u can host silverlight components within a wpf application at microsoft last month, already in the current version of .net &lt;/p&gt;&lt;p&gt;Also I noticed that silverlight is planned to be able to jump out of the browser completely to run on its own pretty much like java does, so why not just use this stuff as it is and let the developers concentrate on the silverlight stuff &amp;#33;&amp;#33;&lt;/p&gt;</description><author>Wardy</author><pubDate>Tue, 06 Jan 2009 14:20:22 GMT</pubDate><guid isPermaLink="false">Commented Feature: Please port the data visualization(charts) to WPF 20090106022022P</guid></item><item><title>Created Issue: Changes to Series.LegendItemStyle after Series.Title do not take effect</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1354</link><description>Forum post&amp;#58; http&amp;#58;&amp;#47;&amp;#47;silverlight.net&amp;#47;forums&amp;#47;t&amp;#47;62975.aspx&lt;br /&gt;&lt;br /&gt;Setting Series.Title creates a LegendItem instance at the time of the set&amp;#59; DataPointSeries.LegendItemStyleProperty needs a property change handler to update the style for that LegendItem instance. Currently, there is no handler, so once the LegendItem is created, subsequent changes to LegendItemStyle have no effect. &amp;#40;This works fine if the order of the setters for LegendItemStyle and Title are reversed because when the LegendItem is created by the Title setter, it applies the previously set LegendItemStyle at that time.&amp;#41;&lt;br /&gt;&lt;br /&gt;Complete demo&amp;#58;&lt;br /&gt;&amp;#60;charting&amp;#58;Chart&amp;#62;&lt;br /&gt;    &amp;#60;charting&amp;#58;Chart.Resources&amp;#62;&lt;br /&gt;        &amp;#60;Style x&amp;#58;Key&amp;#61;&amp;#34;MyLegendItemStyle&amp;#34; TargetType&amp;#61;&amp;#34;charting&amp;#58;LegendItem&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;Setter Property&amp;#61;&amp;#34;FontSize&amp;#34; Value&amp;#61;&amp;#34;50&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Style&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;charting&amp;#58;Chart.Resources&amp;#62;&lt;br /&gt;    &amp;#60;charting&amp;#58;Chart.Series&amp;#62;&lt;br /&gt;        &amp;#60;charting&amp;#58;ColumnSeries Title&amp;#61;&amp;#34;MyTitle&amp;#34; LegendItemStyle&amp;#61;&amp;#34;&amp;#123;StaticResource MyLegendItemStyle&amp;#125;&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;charting&amp;#58;ColumnSeries.ItemsSource&amp;#62;&lt;br /&gt;                &amp;#60;controls&amp;#58;ObjectCollection&amp;#62;&lt;br /&gt;                    &amp;#60;sys&amp;#58;Double&amp;#62;1&amp;#60;&amp;#47;sys&amp;#58;Double&amp;#62;&lt;br /&gt;                    &amp;#60;sys&amp;#58;Double&amp;#62;2&amp;#60;&amp;#47;sys&amp;#58;Double&amp;#62;&lt;br /&gt;                    &amp;#60;sys&amp;#58;Double&amp;#62;3&amp;#60;&amp;#47;sys&amp;#58;Double&amp;#62;&lt;br /&gt;                    &amp;#60;sys&amp;#58;Double&amp;#62;4&amp;#60;&amp;#47;sys&amp;#58;Double&amp;#62;&lt;br /&gt;                &amp;#60;&amp;#47;controls&amp;#58;ObjectCollection&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;charting&amp;#58;ColumnSeries.ItemsSource&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;charting&amp;#58;ColumnSeries&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;charting&amp;#58;Chart.Series&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;charting&amp;#58;Chart&amp;#62;&lt;br /&gt;</description><author>davidans</author><pubDate>Mon, 05 Jan 2009 23:34:49 GMT</pubDate><guid isPermaLink="false">Created Issue: Changes to Series.LegendItemStyle after Series.Title do not take effect 20090105113449P</guid></item><item><title>Commented Issue: Can't get LegendItemStyle to work in december release</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1347</link><description>There where no problem to style the LegendItem in Chart with the LegendItemStyle property in the november release. In the december release however, I cant get the style to apply to the LegendItems.&lt;br /&gt;&lt;br /&gt;The LegendItemStyle property has changed class from DynamicSeries to DataPointSeries. If there is not any major change to how LegendItemStyle is supposed to be used, I think there might be a bug.&lt;br /&gt;Comments: ** Comment from web user: JustinJosefAngel ** &lt;p&gt;See forum post &amp;#64; http&amp;#58;&amp;#47;&amp;#47;silverlight.net&amp;#47;forums&amp;#47;t&amp;#47;62975.aspx&lt;/p&gt;</description><author>JustinJosefAngel</author><pubDate>Mon, 05 Jan 2009 18:47:56 GMT</pubDate><guid isPermaLink="false">Commented Issue: Can't get LegendItemStyle to work in december release 20090105064756P</guid></item><item><title>Commented Feature: TreeView Suggestions (Drag &amp; Drop, Inline Node Editing)</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=844</link><description>I would like to suggest adding drag and drop to the TreeNodes and an event fired when that happens and also inline node editing.&lt;br /&gt;Comments: ** Comment from web user: Wardy ** &lt;p&gt;any ideas when this will be looked at guys &amp;#63; i&amp;#39;m just curious because I need this functionality for a project i&amp;#39;m working on and a mate has already created a treeview, trouble is he is travelling round the world at the moment so I would rather use the &amp;#34;official&amp;#34; treeview for the support. &lt;/p&gt;&lt;p&gt;It would be cool if we could also create context menus on right clicks too, this would bring it online with more commonly known desktop application functionality.&lt;/p&gt;&lt;p&gt;Keep up the good work though &amp;#58;&amp;#41;&lt;/p&gt;</description><author>Wardy</author><pubDate>Mon, 05 Jan 2009 16:29:36 GMT</pubDate><guid isPermaLink="false">Commented Feature: TreeView Suggestions (Drag &amp; Drop, Inline Node Editing) 20090105042936P</guid></item><item><title>Created Issue: Can't get LegendItemStyle to work in december release</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1347</link><description>There where no problem to style the LegendItem in Chart with the LegendItemStyle property in the november release. In the december release however, I cant get the style to apply to the LegendItems.&lt;br /&gt;&lt;br /&gt;The LegendItemStyle property has changed class from DynamicSeries to DataPointSeries. If there is not any major change to how LegendItemStyle is supposed to be used, I think there might be a bug.&lt;br /&gt;</description><author>Svartsau</author><pubDate>Mon, 05 Jan 2009 09:55:17 GMT</pubDate><guid isPermaLink="false">Created Issue: Can't get LegendItemStyle to work in december release 20090105095517A</guid></item><item><title>Created Issue: Create property to always show Minimum value or Maximum value</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1332</link><description>There are times when specifing the minimum value and&amp;#47;or maximum value in combination with an interval that the minimum and maximum values aren&amp;#39;t rendered for the user to see. Please add some kind of switch to force the rendering of the minimum and maximum values of the plot area.&lt;br /&gt;</description><author>rpedersen</author><pubDate>Sat, 03 Jan 2009 20:51:42 GMT</pubDate><guid isPermaLink="false">Created Issue: Create property to always show Minimum value or Maximum value 20090103085142P</guid></item><item><title>Reviewed: Silverlight Toolkit December 2008 (Jan 03, 2009)</title><link>http://www.codeplex.com/Silverlight/Release/ProjectReleases.aspx?ReleaseId=19172</link><description>Rated 5 Stars (out of 5) - Excelent work</description><author>hristo</author><pubDate>Sat, 03 Jan 2009 18:51:51 GMT</pubDate><guid isPermaLink="false">Reviewed: Silverlight Toolkit December 2008 (Jan 03, 2009) 20090103065151P</guid></item><item><title>Created Issue: Hefty recursive loop when LineSeries is resized</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1303</link><description>The method &amp;#34;DataPointSeries.UpdateAllDataPoints&amp;#34; sets a boolean member variable &amp;#34;UpdatingAllDataPoints&amp;#34;, which is used by &amp;#34;LineSeries.UpdateDataPoint&amp;#34; to avoid a recursive loop.  Unfortunately, it seems, that &amp;#34;UpdateDataPoint&amp;#34; can invoke events that indirectly cause a recursive call to &amp;#34;DataPointSeries.UpdateAllDataPoints&amp;#34;, which then unsets the &amp;#34;UpdatingAllDataPoints&amp;#34;.  When returning to the outer &amp;#34;DataPointsSeries.UpdateAllDataPoints&amp;#34; method, it finds the &amp;#34;UpdatingAllDataPoints&amp;#34; set to false, which causes an O&amp;#40;n&amp;#94;2&amp;#41; loop through all data points in &amp;#34;LineSeries.UpdateDataPoint&amp;#34;.  This is &amp;#34;very&amp;#34; expensive when you have quite a few points on the chart.&lt;br /&gt;&lt;br /&gt;Hope this makes sense.  My code is changing the Minimum &amp;#47; Maximum properties of a DateTimeAxis, which causes this problem.  It&amp;#39;s repeatable, but I would need to dig into this a bit more to figure out all gory details &amp;#58;&amp;#41;.  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;DataPointSeries.UpdateAllDataPoints&amp;#58;&lt;br /&gt;&lt;br /&gt;        protected virtual void UpdateAllDataPoints&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            UpdatingAllDataPoints &amp;#61; true&amp;#59;&lt;br /&gt;&lt;br /&gt;            DetachEventHandlersFromDataPoints&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            try&lt;br /&gt;            &amp;#123;&lt;br /&gt;                OnBeforeUpdateDataPoints&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;                foreach &amp;#40;DataPoint dataPoint in ActiveDataPoints&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    UpdateDataPoint&amp;#40;dataPoint&amp;#41;&amp;#59;&lt;br /&gt;                &amp;#125;&lt;br /&gt;&lt;br /&gt;                OnAfterUpdateDataPoints&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            finally&lt;br /&gt;            &amp;#123;&lt;br /&gt;                AttachEventHandlersToDataPoints&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                UpdatingAllDataPoints &amp;#61; false&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;LineSeries.UpdateDataPoint&amp;#58;&lt;br /&gt;&lt;br /&gt;        protected override void UpdateDataPoint&amp;#40;DataPoint dataPoint&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            double maximum &amp;#61; ActualDependentRangeAxis.GetPlotAreaCoordinate&amp;#40;ActualDependentRangeAxis.Range.Maximum&amp;#41;&amp;#59;&lt;br /&gt;            if &amp;#40;ValueHelper.CanGraph&amp;#40;maximum&amp;#41;&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                double x &amp;#61; ActualIndependentRangeAxis.GetPlotAreaCoordinate&amp;#40;ValueHelper.ToComparable&amp;#40;dataPoint.ActualIndependentValue&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;                double y &amp;#61; ActualDependentRangeAxis.GetPlotAreaCoordinate&amp;#40;ValueHelper.ToDouble&amp;#40;dataPoint.ActualDependentValue&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;                if &amp;#40;ValueHelper.CanGraph&amp;#40;x&amp;#41; &amp;#38;&amp;#38; ValueHelper.CanGraph&amp;#40;y&amp;#41;&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    if &amp;#40;&amp;#33;double.IsNaN&amp;#40;MarkerHeight&amp;#41;&amp;#41;&lt;br /&gt;                    &amp;#123;&lt;br /&gt;                        dataPoint.Height &amp;#61; MarkerHeight&amp;#59;&lt;br /&gt;                    &amp;#125;&lt;br /&gt;                    if &amp;#40;&amp;#33;double.IsNaN&amp;#40;MarkerWidth&amp;#41;&amp;#41;&lt;br /&gt;                    &amp;#123;&lt;br /&gt;                        dataPoint.Width &amp;#61; MarkerWidth&amp;#59;&lt;br /&gt;                    &amp;#125;&lt;br /&gt;&lt;br /&gt;                    &amp;#47;&amp;#47; Call UpdateLayout to ensure ActualWidth&amp;#47;ActualHeight are correct&lt;br /&gt;                    if &amp;#40;dataPoint.ActualWidth &amp;#61;&amp;#61; 0.0 &amp;#124;&amp;#124; dataPoint.ActualHeight &amp;#61;&amp;#61; 0.0&amp;#41;&lt;br /&gt;                    &amp;#123;&lt;br /&gt;                        dataPoint.UpdateLayout&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                    &amp;#125;&lt;br /&gt;&lt;br /&gt;                    double coordinateY &amp;#61; Math.Round&amp;#40;maximum - &amp;#40;y &amp;#43; &amp;#40;dataPoint.ActualHeight &amp;#47; 2&amp;#41;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;                    Canvas.SetTop&amp;#40;dataPoint, coordinateY&amp;#41;&amp;#59;&lt;br /&gt;                    double coordinateX &amp;#61; Math.Round&amp;#40;x - &amp;#40;dataPoint.ActualWidth &amp;#47; 2&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;                    Canvas.SetLeft&amp;#40;dataPoint, coordinateX&amp;#41;&amp;#59;&lt;br /&gt;                &amp;#125;&lt;br /&gt;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#62; &lt;br /&gt;                if &amp;#40;&amp;#33;UpdatingAllDataPoints&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    UpdatePointsCollection&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                &amp;#125;&lt;br /&gt;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#61;&amp;#62;&lt;br /&gt;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;</description><author>rdschauer</author><pubDate>Thu, 01 Jan 2009 04:22:04 GMT</pubDate><guid isPermaLink="false">Created Issue: Hefty recursive loop when LineSeries is resized 20090101042204A</guid></item><item><title>Created Issue: DataPointStyle is not respected when set programmaticly</title><link>http://www.codeplex.com/Silverlight/WorkItem/View.aspx?WorkItemId=1302</link><description>When setting DataPointStyle from XAML, it is respected.&lt;br /&gt;However, if setting it from code it is ignored. &lt;br /&gt;&lt;br /&gt;Repro&amp;#58;&lt;br /&gt;XAML&amp;#58; &lt;br /&gt;        &amp;#60;charting&amp;#58;Chart x&amp;#58;Name&amp;#61;&amp;#34;chart&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;charting&amp;#58;ColumnSeries ItemsSource&amp;#61;&amp;#34;&amp;#123;Binding&amp;#125;&amp;#34;&lt;br /&gt;                                   DependentValueBinding&amp;#61;&amp;#34;&amp;#123;Binding Value&amp;#125;&amp;#34;&lt;br /&gt;                                   IndependentValueBinding&amp;#61;&amp;#34;&amp;#123;Binding Key&amp;#125;&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;charting&amp;#58;ColumnSeries&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;charting&amp;#58;Chart&amp;#62;&lt;br /&gt;&lt;br /&gt;code&amp;#58;&lt;br /&gt;        public SilverlightControl32&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;            System.Windows.Style DataPointStyle &amp;#61; new Style&amp;#40;typeof&amp;#40;ColumnDataPoint&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            DataPointStyle.Setters.Add&amp;#40;new Setter&amp;#40;ColumnDataPoint.MaxWidthProperty, 10.0&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#40;&amp;#40;ColumnSeries&amp;#41; chart.Series&amp;#91;0&amp;#93;&amp;#41;.DataPointStyle &amp;#61; DataPointStyle&amp;#59;&lt;br /&gt;&lt;br /&gt;            this.Loaded &amp;#43;&amp;#61; new RoutedEventHandler&amp;#40;SilverlightControl32_Loaded&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;        void SilverlightControl32_Loaded&amp;#40;object sender, RoutedEventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            chart.DataContext &amp;#61; new KeyValuePair&amp;#60;string, int&amp;#62;&amp;#91;&amp;#93;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                new KeyValuePair&amp;#60;string, int&amp;#62;&amp;#40;&amp;#34;hello&amp;#34;, 1&amp;#41;,&lt;br /&gt;                new KeyValuePair&amp;#60;string, int&amp;#62;&amp;#40;&amp;#34;world&amp;#34;, 2&amp;#41;,&lt;br /&gt;                new KeyValuePair&amp;#60;string, int&amp;#62;&amp;#40;&amp;#34;foo&amp;#34;, 3&amp;#41;,&lt;br /&gt;                new KeyValuePair&amp;#60;string, int&amp;#62;&amp;#40;&amp;#34;bar&amp;#34;, 4&amp;#41;&lt;br /&gt;            &amp;#125;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;</description><author>JustinJosefAngel</author><pubDate>Wed, 31 Dec 2008 20:08:35 GMT</pubDate><guid isPermaLink="false">Created Issue: DataPointStyle is not respected when set programmaticly 20081231080835P</guid></item></channel></rss>