<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>wpf Work Item Rss Feed</title><link>http://www.codeplex.com/wpf/WorkItem/List.aspx</link><description>wpf Work Item Rss Description</description><item><title>Created Issue: WPF DataGrid: Problem resizing the rows from code behind. [10978]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10978</link><description>Hi, &lt;br /&gt;I have tried to set different row heights from code behind when I noticed a very strange behavior.&lt;br /&gt;Here is my code&amp;#58;&lt;br /&gt;&amp;#60;Window x&amp;#58;Class&amp;#61;&amp;#34;WpfApplication24.MainWindow&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;        Title&amp;#61;&amp;#34;MainWindow&amp;#34; Height&amp;#61;&amp;#34;350&amp;#34; Width&amp;#61;&amp;#34;525&amp;#34;&amp;#62;&lt;br /&gt;    &amp;#60;Grid&amp;#62;&lt;br /&gt;        &amp;#60;Grid.RowDefinitions&amp;#62;&lt;br /&gt;            &amp;#60;RowDefinition Height&amp;#61;&amp;#34;254&amp;#42;&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;            &amp;#60;RowDefinition Height&amp;#61;&amp;#34;33&amp;#42;&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;            &amp;#60;RowDefinition Height&amp;#61;&amp;#34;24&amp;#42;&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Grid.RowDefinitions&amp;#62;&lt;br /&gt;        &amp;#60;DataGrid x&amp;#58;Name&amp;#61;&amp;#34;dataGrid1&amp;#34; AutoGenerateColumns&amp;#61;&amp;#34;True&amp;#34; Margin&amp;#61;&amp;#34;0,1,0,0&amp;#34; CanUserSortColumns&amp;#61;&amp;#34;False&amp;#34; EnableRowVirtualization&amp;#61;&amp;#34;False&amp;#34; CanUserResizeRows&amp;#61;&amp;#34;True&amp;#34; CanUserDeleteRows&amp;#61;&amp;#34;False&amp;#34;  &amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;Button Content&amp;#61;&amp;#34;Button1&amp;#34; Grid.Row&amp;#61;&amp;#34;1&amp;#34; Name&amp;#61;&amp;#34;button1&amp;#34; Click&amp;#61;&amp;#34;button1_Click&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;Button Content&amp;#61;&amp;#34;Button1&amp;#34; Grid.Row&amp;#61;&amp;#34;2&amp;#34; Height&amp;#61;&amp;#34;23&amp;#34; HorizontalAlignment&amp;#61;&amp;#34;Left&amp;#34; Name&amp;#61;&amp;#34;button2&amp;#34; VerticalAlignment&amp;#61;&amp;#34;Top&amp;#34; Width&amp;#61;&amp;#34;503&amp;#34; Click&amp;#61;&amp;#34;button2_Click&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;Window&amp;#62;&lt;br /&gt;&lt;br /&gt;using System.Collections.Generic&amp;#59;&lt;br /&gt;using System.Windows&amp;#59;&lt;br /&gt;using System.Windows.Controls&amp;#59;&lt;br /&gt;using System.Windows.Documents&amp;#59;&lt;br /&gt;&lt;br /&gt;namespace WpfApplication24&lt;br /&gt;&amp;#123;&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47; &amp;#60;summary&amp;#62;&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47; Interaction logic for MainWindow.xaml&lt;br /&gt;    &amp;#47;&amp;#47;&amp;#47; &amp;#60;&amp;#47;summary&amp;#62;&lt;br /&gt;    public partial class MainWindow &amp;#58; Window&lt;br /&gt;    &amp;#123;&lt;br /&gt;        public MainWindow&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            InitializeComponent&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;        private void button1_Click&amp;#40;object sender, RoutedEventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            List&amp;#60;Person&amp;#62; someItems &amp;#61; new List&amp;#60;Person&amp;#62;&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            someItems.Add&amp;#40;new Person&amp;#40;&amp;#34;name 1&amp;#34;, &amp;#34;address 1&amp;#34;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            someItems.Add&amp;#40;new Person&amp;#40;&amp;#34;name 2&amp;#34;, &amp;#34;address 2&amp;#34;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            someItems.Add&amp;#40;new Person&amp;#40;&amp;#34;name 3&amp;#34;, &amp;#34;address 3&amp;#34;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            someItems.Add&amp;#40;new Person&amp;#40;&amp;#34;name 4&amp;#34;, &amp;#34;address 4&amp;#34;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            someItems.Add&amp;#40;new Person&amp;#40;&amp;#34;name 5&amp;#34;, &amp;#34;address 5&amp;#34;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            someItems.Add&amp;#40;new Person&amp;#40;&amp;#34;name 6&amp;#34;, &amp;#34;address 6&amp;#34;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            dataGrid1.ItemsSource &amp;#61; someItems&amp;#59;   &lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;        public class Person&lt;br /&gt;        &amp;#123;&lt;br /&gt;            public Person&amp;#40;string name, string address&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                this.Name &amp;#61; name&amp;#59;&lt;br /&gt;                this.Address &amp;#61; address&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;&lt;br /&gt;            public string Name &amp;#123; get&amp;#59; set&amp;#59; &amp;#125;&lt;br /&gt;&lt;br /&gt;            public string Address &amp;#123; get&amp;#59; private set&amp;#59; &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;        private void button2_Click&amp;#40;object sender, RoutedEventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            DataGridRow someRow &amp;#61; dataGrid1.ItemContainerGenerator.ContainerFromIndex&amp;#40;1&amp;#41; as DataGridRow&amp;#59;&lt;br /&gt;            someRow.Height &amp;#61; 100&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;    &amp;#125;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;Steps to reproduce&amp;#58;&lt;br /&gt;1. Press Button1 to load some data into the datagrid.&lt;br /&gt;2. Press Button2 to set the height of the 2nd row to 100.&lt;br /&gt;3. Try to resize the 2nd row using the mouse.&lt;br /&gt;&lt;br /&gt;I am attaching the project and a snapshot also.&lt;br /&gt;&lt;br /&gt;I have tried &amp;#40;and reproduced&amp;#41; this with both the DataGrid from the WPFToolkit and the DataGrid which comes with VisualStudio2010 Beta2.&lt;br /&gt;&lt;br /&gt;Is there another way that I could set the height of a certain row from code behind&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks, &lt;br /&gt;Cristian&lt;br /&gt;</description><author>cristianmad</author><pubDate>Fri, 20 Nov 2009 16:38:28 GMT</pubDate><guid isPermaLink="false">Created Issue: WPF DataGrid: Problem resizing the rows from code behind. [10978] 20091120043828P</guid></item><item><title>Commented Issue: DataGrid RowDetailTemplate will only adjust to width increase, not decrease [10196]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10196</link><description>I believe I have found a bug in the way the DataGrid from the WPF Toolkit handles resizing when using RowDetailTemplates.&lt;br /&gt;&lt;br /&gt;More specifically, I use a RowDetailTemplate that contains content aligned to the right &amp;#40;originally, it was a textbox that was supposed to fill all the space, but for the purpose of reporting this issue, it is simpler to demonstrate with a right-aligned text block&amp;#41;.&lt;br /&gt;When the width of the datagrid is increased &amp;#40;window is made wider&amp;#41;, the width of the RowDetail-area is also increased, which is fine.&lt;br /&gt;If, then, the width is decreased again, the RowDetail area stays wide, which means right-aligned contents disappears.&lt;br /&gt;&lt;br /&gt;Here is a minimal demonstrator&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#60;Window x&amp;#58;Class&amp;#61;&amp;#34;QuickTest.Window1&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;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;wpf&amp;#47;2008&amp;#47;toolkit&amp;#34;&lt;br /&gt;        Title&amp;#61;&amp;#34;Window1&amp;#34; Height&amp;#61;&amp;#34;300&amp;#34; Width&amp;#61;&amp;#34;300&amp;#34;&amp;#62;&lt;br /&gt;    &amp;#60;toolkit&amp;#58;DataGrid AutoGenerateColumns&amp;#61;&amp;#34;False&amp;#34; SelectionUnit&amp;#61;&amp;#34;FullRow&amp;#34; &lt;br /&gt;                          RowDetailsVisibilityMode&amp;#61;&amp;#34;VisibleWhenSelected&amp;#34;&amp;#62;&lt;br /&gt;        &amp;#60;toolkit&amp;#58;DataGrid.Columns&amp;#62;&lt;br /&gt;            &amp;#60;toolkit&amp;#58;DataGridTextColumn Header&amp;#61;&amp;#34;Sample column - click empty row&amp;#34; Width&amp;#61;&amp;#34;&amp;#42;&amp;#34;&amp;#62;&amp;#60;&amp;#47;toolkit&amp;#58;DataGridTextColumn&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;toolkit&amp;#58;DataGrid.Columns&amp;#62;&lt;br /&gt;        &amp;#60;toolkit&amp;#58;DataGrid.RowDetailsTemplate&amp;#62;&lt;br /&gt;            &amp;#60;DataTemplate&amp;#62;&lt;br /&gt;                &amp;#60;Grid Margin&amp;#61;&amp;#34;5&amp;#34;&amp;#62;&lt;br /&gt;                    &amp;#60;Grid.RowDefinitions&amp;#62;&lt;br /&gt;                        &amp;#60;RowDefinition Height&amp;#61;&amp;#34;Auto&amp;#34;&amp;#62;&amp;#60;&amp;#47;RowDefinition&amp;#62;&lt;br /&gt;                    &amp;#60;&amp;#47;Grid.RowDefinitions&amp;#62;&lt;br /&gt;                    &amp;#60;Grid.ColumnDefinitions&amp;#62;&lt;br /&gt;                        &amp;#60;ColumnDefinition Width&amp;#61;&amp;#34;&amp;#42;&amp;#34;&amp;#62;&amp;#60;&amp;#47;ColumnDefinition&amp;#62;&lt;br /&gt;                        &amp;#60;ColumnDefinition Width&amp;#61;&amp;#34;Auto&amp;#34;&amp;#62;&amp;#60;&amp;#47;ColumnDefinition&amp;#62;&lt;br /&gt;                    &amp;#60;&amp;#47;Grid.ColumnDefinitions&amp;#62;&lt;br /&gt;                    &amp;#60;TextBlock Grid.Column&amp;#61;&amp;#34;1&amp;#34;&amp;#62;move right window border further right and then left again - behold, this text disappears&amp;#33;&amp;#60;&amp;#47;TextBlock&amp;#62;&lt;br /&gt;                &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;DataTemplate&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;toolkit&amp;#58;DataGrid.RowDetailsTemplate&amp;#62; &amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;toolkit&amp;#58;DataGrid&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;Window&amp;#62;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Code-behind is not necessary for this example. To make the problem appear, make the window first wider and then narrow again.&lt;br /&gt;</description><author>JustinBelcher</author><pubDate>Thu, 19 Nov 2009 21:57:21 GMT</pubDate><guid isPermaLink="false">Commented Issue: DataGrid RowDetailTemplate will only adjust to width increase, not decrease [10196] 20091119095721P</guid></item><item><title>Created Issue: Command with ElementName Binding doesn't wok in HeaderStyle and CellTemplate [10967]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10967</link><description>Both CheckBox Command that I put in Header Style and CellTemplate never work. &lt;br /&gt;&lt;br /&gt;&amp;#60;toolkit&amp;#58;DataGrid x&amp;#58;Name&amp;#61;&amp;#34;grid&amp;#34;&lt;br /&gt;                           AutoGenerateColumns&amp;#61;&amp;#34;False&amp;#34;&lt;br /&gt;                           ItemsSource&amp;#61;&amp;#34;&amp;#123;Binding ProjectMilestones&amp;#125;&amp;#34;&lt;br /&gt;                           HorizontalAlignment&amp;#61;&amp;#34;Stretch&amp;#34; VerticalAlignment&amp;#61;&amp;#34;Stretch&amp;#34; &lt;br /&gt;                            &amp;#62;&lt;br /&gt;                        &amp;#60;toolkit&amp;#58;DataGrid.Columns&amp;#62;                            &lt;br /&gt;                            &amp;#60;toolkit&amp;#58;DataGridTemplateColumn &amp;#62;                                &lt;br /&gt;                                &amp;#60;toolkit&amp;#58;DataGridTemplateColumn.HeaderStyle&amp;#62;&lt;br /&gt;                                    &amp;#60;Style TargetType&amp;#61;&amp;#34;&amp;#123;x&amp;#58;Type toolkit&amp;#58;DataGridColumnHeader&amp;#125;&amp;#34;&amp;#62;&lt;br /&gt;                                        &amp;#60;Setter Property&amp;#61;&amp;#34;Template&amp;#34;&amp;#62;&lt;br /&gt;                                            &amp;#60;Setter.Value&amp;#62;&lt;br /&gt;                                                &amp;#60;ControlTemplate&amp;#62;&lt;br /&gt;                                                    &amp;#60;Grid Margin&amp;#61;&amp;#34;0&amp;#34;&amp;#62;&lt;br /&gt;                                                        &amp;#60;CheckBox HorizontalAlignment&amp;#61;&amp;#34;Center&amp;#34; VerticalAlignment&amp;#61;&amp;#34;Center&amp;#34; &lt;br /&gt;                                                                   IsChecked&amp;#61;&amp;#34;&amp;#123;Binding ElementName&amp;#61;grid,Path&amp;#61;DataContext.IsCheckAllProjectMilestones&amp;#125;&amp;#34;   &lt;br /&gt;                                                                   Command&amp;#61;&amp;#34;&amp;#123;Binding CheckAllProjectMilestonesCommand&amp;#125;&amp;#34;&lt;br /&gt;                                                             &amp;#47;&amp;#62;&lt;br /&gt;                                                    &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;                                                &amp;#60;&amp;#47;ControlTemplate&amp;#62;&lt;br /&gt;                                            &amp;#60;&amp;#47;Setter.Value&amp;#62;&lt;br /&gt;                                        &amp;#60;&amp;#47;Setter&amp;#62;&lt;br /&gt;                                    &amp;#60;&amp;#47;Style&amp;#62;&lt;br /&gt;                                &amp;#60;&amp;#47;toolkit&amp;#58;DataGridTemplateColumn.HeaderStyle&amp;#62; &lt;br /&gt;                                &amp;#60;toolkit&amp;#58;DataGridTemplateColumn.CellTemplate&amp;#62;&lt;br /&gt;                                    &amp;#60;DataTemplate&amp;#62;&lt;br /&gt;                                        &amp;#60;CheckBox HorizontalAlignment&amp;#61;&amp;#34;Center&amp;#34;  &lt;br /&gt;                                                      IsChecked&amp;#61;&amp;#34;&amp;#123;Binding IsSelected&amp;#125;&amp;#34; &lt;br /&gt;                                                      Command&amp;#61;&amp;#34;&amp;#123;Binding ElementName&amp;#61;grid,Path&amp;#61;DataContext.CheckProjectMilestoneCommand&amp;#125;&amp;#34;&lt;br /&gt;                                                      &amp;#47;&amp;#62;&lt;br /&gt;                                    &amp;#60;&amp;#47;DataTemplate&amp;#62;&lt;br /&gt;                                &amp;#60;&amp;#47;toolkit&amp;#58;DataGridTemplateColumn.CellTemplate&amp;#62;&lt;br /&gt;                            &amp;#60;&amp;#47;toolkit&amp;#58;DataGridTemplateColumn&amp;#62;&lt;br /&gt;</description><author>michaelsync</author><pubDate>Thu, 19 Nov 2009 16:00:18 GMT</pubDate><guid isPermaLink="false">Created Issue: Command with ElementName Binding doesn't wok in HeaderStyle and CellTemplate [10967] 20091119040018P</guid></item><item><title>Created Issue: AttributeTableBuilder exists in two referenced assemblies [10956]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10956</link><description>When I compile WPFToolkit, I get following error message for Controls.DataVisualization.Toolkit.Design&amp;#58;&lt;br /&gt;The type &amp;#39;Microsoft.Windows.Design.Metadata.AttributeTableBuilder&amp;#39; exists in both &amp;#39;c&amp;#58;&amp;#92;Program Files &amp;#40;x86&amp;#41;&amp;#92;Microsoft Expression&amp;#92;Blend 3&amp;#92;Microsoft.Windows.Design.Extensibility&amp;#92;Microsoft.Windows.Design.Extensibility.dll&amp;#39; and &amp;#39;c&amp;#58;&amp;#92;Program Files &amp;#40;x86&amp;#41;&amp;#92;Microsoft Visual Studio 9.0&amp;#92;Common7&amp;#92;IDE&amp;#92;PublicAssemblies&amp;#92;Microsoft.Windows.Design.dll&amp;#39;&lt;br /&gt;</description><author>thoemmi</author><pubDate>Wed, 18 Nov 2009 08:01:54 GMT</pubDate><guid isPermaLink="false">Created Issue: AttributeTableBuilder exists in two referenced assemblies [10956] 20091118080154A</guid></item><item><title>Created Issue: DataGrid: binding - clear - binding not grouping [10954]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10954</link><description>Steps...&lt;br /&gt;1. Binding a DataGrid to a CollectionViewSource with GroupDescriptions specified, works the first time around.&lt;br /&gt;2. Clearing the binding on the DataGrid.ItemsSourceProperty &amp;#40;or setting it to null&amp;#41;&lt;br /&gt;3. and then binding it a second time to a new CollectionViewSource with GroupDescriptions, finds that the Grouping no long appears on the DataGrid.&lt;br /&gt;</description><author>midspace</author><pubDate>Wed, 18 Nov 2009 01:07:56 GMT</pubDate><guid isPermaLink="false">Created Issue: DataGrid: binding - clear - binding not grouping [10954] 20091118010756A</guid></item><item><title>Created Issue: DataGrid : grouped items, editing cell TAB out of shifts rows vertically [10953]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10953</link><description>Issue where user may click on a cell to edit an item in a set of grouped data.  Tabbing to the next cell, causes the row to move to the bottom of the group&amp;#39;s collection of items.&lt;br /&gt;The item in the cell doesn&amp;#39;t even have to be edited.  Simply activate the editing, and tab &amp;#40;or shift-tab&amp;#41; to an adjacent cell.&lt;br /&gt;&lt;br /&gt;This is disconcerting, and our users have complained to us.&lt;br /&gt;&lt;br /&gt;The only workaround I have at the moment is to enforce sorting on a secondary column which has unique data, which fixes all the rows in place.  This however requires some juggling around whenever the user wants to sort the datagrid.&lt;br /&gt;&lt;br /&gt;Note, this may be similar to Item 10065&lt;br /&gt;</description><author>midspace</author><pubDate>Tue, 17 Nov 2009 22:40:11 GMT</pubDate><guid isPermaLink="false">Created Issue: DataGrid : grouped items, editing cell TAB out of shifts rows vertically [10953] 20091117104011P</guid></item><item><title>Commented Issue: WPFDataGrid: Some records are shifted (panned horizontally) [10311]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10311</link><description>When datagrid contains a lot of records &amp;#40;more than 100&amp;#41; I have experienced with problem that some record are panned horizontally.&lt;br /&gt;&lt;br /&gt;Sometimes panned records repeated after some period &amp;#40;for exaple each 30-th record&amp;#41;, but sometimes without any regularity &amp;#40;like in screenshot in attachment&amp;#41;&lt;br /&gt;&lt;br /&gt;This issue has been reproduced since January version.&lt;br /&gt;</description><author>avoloschuk</author><pubDate>Fri, 13 Nov 2009 21:32:42 GMT</pubDate><guid isPermaLink="false">Commented Issue: WPFDataGrid: Some records are shifted (panned horizontally) [10311] 20091113093242P</guid></item><item><title>Commented Issue: Chart DateTimeAxis: binding IntervalType freeze .Net and appli on Window.Show [10935]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10935</link><description>Hi,&lt;br /&gt;&lt;br /&gt;When binding the IntervalType property of the DateTimesAxis to a ViewModel class, it crashed .Net when trying o refresh the preview area. &lt;br /&gt;&lt;br /&gt;If I escape the refresh of the preview and launch the debugger, the Window never opens.&lt;br /&gt;&lt;br /&gt;Here a code sample of the xaml &amp;#40;DataContext is set to the ViewModel class before the window.show in the app startup &amp;#58;&lt;br /&gt;&lt;br /&gt;        &amp;#60;WPFToolkitCharting&amp;#58;Chart Grid.Row&amp;#61;&amp;#34;1&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;WPFToolkitCharting&amp;#58;Chart.Axes&amp;#62;&lt;br /&gt;                &amp;#60;WPFToolkitCharting&amp;#58;LinearAxis Orientation&amp;#61;&amp;#34;Y&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;                &amp;#60;WPFToolkitCharting&amp;#58;DateTimeAxis Orientation&amp;#61;&amp;#34;X&amp;#34;  &lt;br /&gt;                   ShowGridLines&amp;#61;&amp;#34;True&amp;#34; &lt;br /&gt;                   IntervalType&amp;#61;&amp;#34;&amp;#123;Binding DataSetChartVM.IntervalType&amp;#125;&amp;#34; Interval&amp;#61;&amp;#34;1&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;WPFToolkitCharting&amp;#58;Chart.Axes&amp;#62;&lt;br /&gt;            &amp;#60;WPFToolkitCharting&amp;#58;Chart.Series&amp;#62;&lt;br /&gt;                &amp;#60;WPFToolkitCharting&amp;#58;LineSeries Title&amp;#61;&amp;#34;&amp;#123;Binding Name&amp;#125;&amp;#34; IndependentValueBinding&amp;#61;&amp;#34;&amp;#123;Binding Date&amp;#125;&amp;#34; &lt;br /&gt;                                                 DependentValueBinding&amp;#61;&amp;#34;&amp;#123;Binding  Value&amp;#125;&amp;#34; ItemsSource&amp;#61;&amp;#34;&amp;#123;Binding Items&amp;#125;&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;WPFToolkitCharting&amp;#58;Chart.Series&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;WPFToolkitCharting&amp;#58;Chart&amp;#62;&lt;br /&gt;&lt;br /&gt;I did not get the chance yet to run this with the Tollkit source to this what happens.&lt;br /&gt;&lt;br /&gt;Any thought &amp;#63;&lt;br /&gt;&lt;br /&gt;Cheers&lt;br /&gt;</description><author>RenaudLZ</author><pubDate>Fri, 13 Nov 2009 14:47:37 GMT</pubDate><guid isPermaLink="false">Commented Issue: Chart DateTimeAxis: binding IntervalType freeze .Net and appli on Window.Show [10935] 20091113024737P</guid></item><item><title>Commented Issue: Chart DateTimeAxis: binding IntervalType freeze .Net and appli on Window.Show [10935]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10935</link><description>Hi,&lt;br /&gt;&lt;br /&gt;When binding the IntervalType property of the DateTimesAxis to a ViewModel class, it crashed .Net when trying o refresh the preview area. &lt;br /&gt;&lt;br /&gt;If I escape the refresh of the preview and launch the debugger, the Window never opens.&lt;br /&gt;&lt;br /&gt;Here a code sample of the xaml &amp;#40;DataContext is set to the ViewModel class before the window.show in the app startup &amp;#58;&lt;br /&gt;&lt;br /&gt;        &amp;#60;WPFToolkitCharting&amp;#58;Chart Grid.Row&amp;#61;&amp;#34;1&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;WPFToolkitCharting&amp;#58;Chart.Axes&amp;#62;&lt;br /&gt;                &amp;#60;WPFToolkitCharting&amp;#58;LinearAxis Orientation&amp;#61;&amp;#34;Y&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;                &amp;#60;WPFToolkitCharting&amp;#58;DateTimeAxis Orientation&amp;#61;&amp;#34;X&amp;#34;  &lt;br /&gt;                   ShowGridLines&amp;#61;&amp;#34;True&amp;#34; &lt;br /&gt;                   IntervalType&amp;#61;&amp;#34;&amp;#123;Binding DataSetChartVM.IntervalType&amp;#125;&amp;#34; Interval&amp;#61;&amp;#34;1&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;WPFToolkitCharting&amp;#58;Chart.Axes&amp;#62;&lt;br /&gt;            &amp;#60;WPFToolkitCharting&amp;#58;Chart.Series&amp;#62;&lt;br /&gt;                &amp;#60;WPFToolkitCharting&amp;#58;LineSeries Title&amp;#61;&amp;#34;&amp;#123;Binding Name&amp;#125;&amp;#34; IndependentValueBinding&amp;#61;&amp;#34;&amp;#123;Binding Date&amp;#125;&amp;#34; &lt;br /&gt;                                                 DependentValueBinding&amp;#61;&amp;#34;&amp;#123;Binding  Value&amp;#125;&amp;#34; ItemsSource&amp;#61;&amp;#34;&amp;#123;Binding Items&amp;#125;&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;WPFToolkitCharting&amp;#58;Chart.Series&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;WPFToolkitCharting&amp;#58;Chart&amp;#62;&lt;br /&gt;&lt;br /&gt;I did not get the chance yet to run this with the Tollkit source to this what happens.&lt;br /&gt;&lt;br /&gt;Any thought &amp;#63;&lt;br /&gt;&lt;br /&gt;Cheers&lt;br /&gt;</description><author>RenaudLZ</author><pubDate>Fri, 13 Nov 2009 13:43:53 GMT</pubDate><guid isPermaLink="false">Commented Issue: Chart DateTimeAxis: binding IntervalType freeze .Net and appli on Window.Show [10935] 20091113014353P</guid></item><item><title>Created Issue: Chart DateTimeAxis: binding IntervalType freeze .Net and appli on Window.Show [10935]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10935</link><description>Hi,&lt;br /&gt;&lt;br /&gt;When binding the IntervalType property of the DateTimesAxis to a ViewModel class, it crashed .Net when trying o refresh the preview area. &lt;br /&gt;&lt;br /&gt;If I escape the refresh of the preview and launch the debugger, the Window never opens.&lt;br /&gt;&lt;br /&gt;Here a code sample of the xaml &amp;#40;DataContext is set to the ViewModel class before the window.show in the app startup &amp;#58;&lt;br /&gt;&lt;br /&gt;        &amp;#60;WPFToolkitCharting&amp;#58;Chart Grid.Row&amp;#61;&amp;#34;1&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;WPFToolkitCharting&amp;#58;Chart.Axes&amp;#62;&lt;br /&gt;                &amp;#60;WPFToolkitCharting&amp;#58;LinearAxis Orientation&amp;#61;&amp;#34;Y&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;                &amp;#60;WPFToolkitCharting&amp;#58;DateTimeAxis Orientation&amp;#61;&amp;#34;X&amp;#34;  &lt;br /&gt;                   ShowGridLines&amp;#61;&amp;#34;True&amp;#34; &lt;br /&gt;                   IntervalType&amp;#61;&amp;#34;&amp;#123;Binding DataSetChartVM.IntervalType&amp;#125;&amp;#34; Interval&amp;#61;&amp;#34;1&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;WPFToolkitCharting&amp;#58;Chart.Axes&amp;#62;&lt;br /&gt;            &amp;#60;WPFToolkitCharting&amp;#58;Chart.Series&amp;#62;&lt;br /&gt;                &amp;#60;WPFToolkitCharting&amp;#58;LineSeries Title&amp;#61;&amp;#34;&amp;#123;Binding Name&amp;#125;&amp;#34; IndependentValueBinding&amp;#61;&amp;#34;&amp;#123;Binding Date&amp;#125;&amp;#34; &lt;br /&gt;                                                 DependentValueBinding&amp;#61;&amp;#34;&amp;#123;Binding  Value&amp;#125;&amp;#34; ItemsSource&amp;#61;&amp;#34;&amp;#123;Binding Items&amp;#125;&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;WPFToolkitCharting&amp;#58;Chart.Series&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;WPFToolkitCharting&amp;#58;Chart&amp;#62;&lt;br /&gt;&lt;br /&gt;I did not get the chance yet to run this with the Tollkit source to this what happens.&lt;br /&gt;&lt;br /&gt;Any thought &amp;#63;&lt;br /&gt;&lt;br /&gt;Cheers&lt;br /&gt;</description><author>RenaudLZ</author><pubDate>Fri, 13 Nov 2009 13:07:14 GMT</pubDate><guid isPermaLink="false">Created Issue: Chart DateTimeAxis: binding IntervalType freeze .Net and appli on Window.Show [10935] 20091113010714P</guid></item><item><title>Created Issue: SharedSizeGroup GridSplitter Issue [10934]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10934</link><description>I wish to use a Grid for my top level layout. The Grid will have 1 column and n rows. Each row in the Grid should also contain a Grid which shall have 3 columns and 1 row. In the second column is a GridSplitter and I am trying to use a SharedSizeGroup so that this changes the size of the first column across all of the nested Grids.&lt;br /&gt;&lt;br /&gt;Here is what i have...and it works&amp;#33;&amp;#33;...well kind of...if you click the splitter and resize without letting go it works...but for some reason if you resize something and let go of the mouse and then attempt to resize using a different row it seems to &amp;#34;stick&amp;#34;.&lt;br /&gt;&lt;br /&gt;&amp;#60;pre&amp;#62;&amp;#60;&amp;#33;-- Parent Grid --&amp;#62;&lt;br /&gt;&amp;#60;Grid Grid.IsSharedSizeScope&amp;#61;&amp;#34;True&amp;#34;&amp;#62;&lt;br /&gt;    &amp;#60;Grid.RowDefinitions&amp;#62;&lt;br /&gt;        &amp;#60;RowDefinition&amp;#62;&amp;#60;&amp;#47;RowDefinition&amp;#62;&lt;br /&gt;        &amp;#60;RowDefinition&amp;#62;&amp;#60;&amp;#47;RowDefinition&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Grid.RowDefinitions&amp;#62;&lt;br /&gt;&lt;br /&gt;    &amp;#60;&amp;#33;-- First Grid --&amp;#62;&lt;br /&gt;    &amp;#60;Grid Grid.Row&amp;#61;&amp;#34;0&amp;#34;&amp;#62;&lt;br /&gt;        &amp;#60;Grid.ColumnDefinitions&amp;#62;&lt;br /&gt;            &amp;#60;ColumnDefinition SharedSizeGroup&amp;#61;&amp;#34;A&amp;#34; Width&amp;#61;&amp;#34;Auto&amp;#34;&amp;#62;&amp;#60;&amp;#47;ColumnDefinition&amp;#62;&lt;br /&gt;            &amp;#60;ColumnDefinition SharedSizeGroup&amp;#61;&amp;#34;B&amp;#34; Width&amp;#61;&amp;#34;Auto&amp;#34;&amp;#62;&amp;#60;&amp;#47;ColumnDefinition&amp;#62;&lt;br /&gt;            &amp;#60;ColumnDefinition SharedSizeGroup&amp;#61;&amp;#34;C&amp;#34; Width&amp;#61;&amp;#34;Auto&amp;#34;&amp;#62;&amp;#60;&amp;#47;ColumnDefinition&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Grid.ColumnDefinitions&amp;#62;&lt;br /&gt;&lt;br /&gt;        &amp;#60;Label Grid.Column&amp;#61;&amp;#34;0&amp;#34;&amp;#62;One-Left&amp;#60;&amp;#47;Label&amp;#62;&lt;br /&gt;        &amp;#60;GridSplitter Grid.Column&amp;#61;&amp;#34;1&amp;#34; Width&amp;#61;&amp;#34;5&amp;#34; Background&amp;#61;&amp;#34;DarkGray&amp;#34;&amp;#62;&amp;#60;&amp;#47;GridSplitter&amp;#62;&lt;br /&gt;        &amp;#60;Label Grid.Column&amp;#61;&amp;#34;2&amp;#34;&amp;#62;One-Right&amp;#60;&amp;#47;Label&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;&lt;br /&gt;    &amp;#60;&amp;#33;-- Second Grid --&amp;#62;&lt;br /&gt;    &amp;#60;Grid Grid.Row&amp;#61;&amp;#34;1&amp;#34;&amp;#62;&lt;br /&gt;        &amp;#60;Grid.ColumnDefinitions&amp;#62;&lt;br /&gt;            &amp;#60;ColumnDefinition SharedSizeGroup&amp;#61;&amp;#34;A&amp;#34; Width&amp;#61;&amp;#34;Auto&amp;#34;&amp;#62;&amp;#60;&amp;#47;ColumnDefinition&amp;#62;&lt;br /&gt;            &amp;#60;ColumnDefinition SharedSizeGroup&amp;#61;&amp;#34;B&amp;#34; Width&amp;#61;&amp;#34;Auto&amp;#34;&amp;#62;&amp;#60;&amp;#47;ColumnDefinition&amp;#62;&lt;br /&gt;            &amp;#60;ColumnDefinition SharedSizeGroup&amp;#61;&amp;#34;C&amp;#34; Width&amp;#61;&amp;#34;Auto&amp;#34;&amp;#62;&amp;#60;&amp;#47;ColumnDefinition&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Grid.ColumnDefinitions&amp;#62;&lt;br /&gt;&lt;br /&gt;        &amp;#60;Label Grid.Column&amp;#61;&amp;#34;0&amp;#34;&amp;#62;Two-Left&amp;#60;&amp;#47;Label&amp;#62;&lt;br /&gt;        &amp;#60;GridSplitter Grid.Column&amp;#61;&amp;#34;1&amp;#34; Width&amp;#61;&amp;#34;5&amp;#34; Background&amp;#61;&amp;#34;DarkGray&amp;#34;&amp;#62;&amp;#60;&amp;#47;GridSplitter&amp;#62;&lt;br /&gt;        &amp;#60;Label Grid.Column&amp;#61;&amp;#34;2&amp;#34;&amp;#62;Two-Right&amp;#60;&amp;#47;Label&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;&lt;br /&gt;&amp;#60;&amp;#47;Grid&amp;#62;&amp;#60;&amp;#47;pre&amp;#62;&lt;br /&gt;</description><author>fallenidol</author><pubDate>Fri, 13 Nov 2009 12:04:23 GMT</pubDate><guid isPermaLink="false">Created Issue: SharedSizeGroup GridSplitter Issue [10934] 20091113120423P</guid></item><item><title>Created Issue: There is a bug when scrolling data on a DataGrid [10911]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10911</link><description>When I use one Datagrid on a WPF Window without template columns there is no problem, but if I add another Datagrid or add a template column with a TextBox inside, and I scroll the DataGrid, I can watch values inside the DataGrid changing alleatory.&lt;br /&gt;&lt;br /&gt;I am using dinamic databinding  from a database this way&amp;#58;&lt;br /&gt;&lt;br /&gt;                MyDataGrid.DataContext &amp;#61; MyDataTable&lt;br /&gt;&lt;br /&gt;So, I first get data from the database into an ADO.NET DataTable object, then I bind the DataGrid control.&lt;br /&gt;&lt;br /&gt;Then I format data inside the DataGrid control this way&amp;#58;&lt;br /&gt;&lt;br /&gt;MyDataGrid.Columns&amp;#40;2&amp;#41;.GetCellContent&amp;#40;MyDataGrid.Items&amp;#40;3&amp;#41;&amp;#41;.SetValue&amp;#40;TextBlock.TextProperty, FormatCurrency&amp;#40;MyDataTable.Rows&amp;#40;3&amp;#41;&amp;#40;&amp;#34;Total&amp;#34;&amp;#41;, 2&amp;#41;&amp;#41;&lt;br /&gt;&lt;br /&gt;In this case, I set the value of third column, fourth row to the value of &amp;#34;Total&amp;#34; column with currency format.&lt;br /&gt;&lt;br /&gt;Then, when I scroll either of the DataGrid controls, I can watch the values changing alleatory.&lt;br /&gt;</description><author>gabriel_ir</author><pubDate>Mon, 09 Nov 2009 18:33:36 GMT</pubDate><guid isPermaLink="false">Created Issue: There is a bug when scrolling data on a DataGrid [10911] 20091109063336P</guid></item><item><title>Commented Issue: Probleme with right click when isEnabled is false [10241]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10241</link><description>Hello,&lt;br /&gt;&lt;br /&gt;I have a probleme with the datagrid, when I disable it the user can change seleted item if he do a right click on others items.&lt;br /&gt;&lt;br /&gt;If you have a solution&amp;#59;&lt;br /&gt;&lt;br /&gt;Thank You&amp;#33;&lt;br /&gt;</description><author>RichardBladh</author><pubDate>Mon, 09 Nov 2009 15:01:02 GMT</pubDate><guid isPermaLink="false">Commented Issue: Probleme with right click when isEnabled is false [10241] 20091109030102P</guid></item><item><title>Commented Issue: Probleme with right click when isEnabled is false [10241]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10241</link><description>Hello,&lt;br /&gt;&lt;br /&gt;I have a probleme with the datagrid, when I disable it the user can change seleted item if he do a right click on others items.&lt;br /&gt;&lt;br /&gt;If you have a solution&amp;#59;&lt;br /&gt;&lt;br /&gt;Thank You&amp;#33;&lt;br /&gt;</description><author>RichardBladh</author><pubDate>Mon, 09 Nov 2009 13:36:46 GMT</pubDate><guid isPermaLink="false">Commented Issue: Probleme with right click when isEnabled is false [10241] 20091109013646P</guid></item><item><title>Commented Issue: AutoGenerateColumns fails when column name contains a period [9852]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=9852</link><description>When using AutoGenerateColumns&amp;#61;&amp;#34;true&amp;#34; to bind to a DataTable that has a column with a period &amp;#40;.&amp;#41; in its name &amp;#40;for example, &amp;#34;my.columnName&amp;#34;&amp;#41;, then the column will render in the DataGrid, but the cells will not display any data.&lt;br /&gt;Comments: ** Comment from web user: hrkyemba ** &lt;p&gt;Why is the status of this item fixed&amp;#63;  It is common to have a period in a column name when you are joining multiple tables and need to disambiguate the column name.  &lt;/p&gt;</description><author>hrkyemba</author><pubDate>Thu, 05 Nov 2009 18:14:57 GMT</pubDate><guid isPermaLink="false">Commented Issue: AutoGenerateColumns fails when column name contains a period [9852] 20091105061457P</guid></item><item><title>Commented Issue: DataGrid: The ESC and Backspace key produces an unrecognized character [10246]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10246</link><description>Select a DataGridTextColumn cell and press the ESC or Backspace key. Then the cell enters the edit mode and shows an unrecognized character &amp;#40;&amp;#39;&amp;#91;&amp;#93;&amp;#39;&amp;#41; in the TextBox.&lt;br /&gt;&lt;br /&gt;However, the behavior should be similar to Microsoft Excel.&lt;br /&gt;1&amp;#41; ESC doesn&amp;#39;t do anything when the cell is not in edit mode.&lt;br /&gt;2&amp;#41; The Backspace key should delete the content of the cell and it should enter the edit mode.&lt;br /&gt;Comments: ** Comment from web user: tommywtf ** &lt;p&gt;I have the same problem.&amp;#126;&amp;#126;&lt;br /&gt;Please fix it.&lt;br /&gt;Thanks&amp;#33;&lt;/p&gt;</description><author>tommywtf</author><pubDate>Wed, 04 Nov 2009 02:58:59 GMT</pubDate><guid isPermaLink="false">Commented Issue: DataGrid: The ESC and Backspace key produces an unrecognized character [10246] 20091104025859A</guid></item><item><title>Created Issue: DataGridRow.ClearRow(DataGrid owningDataGrid) Error [10872]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10872</link><description>Debug.Assert&amp;#40;_owner &amp;#61;&amp;#61; owningDataGrid, &amp;#34;_owner should be the same as the DataGrid that is clearing the row.&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;_owner is null &amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&lt;br /&gt;&lt;br /&gt;After error application is very slow. DataGrids views is bad.&lt;br /&gt;</description><author>kollerpal</author><pubDate>Mon, 02 Nov 2009 09:48:16 GMT</pubDate><guid isPermaLink="false">Created Issue: DataGridRow.ClearRow(DataGrid owningDataGrid) Error [10872] 20091102094816A</guid></item><item><title>Commented Issue: Datagrid frozen columns and group header [10741]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10741</link><description>Dear all&lt;br /&gt;&lt;br /&gt;I am using the datagrid from the toolkit. I am freezing the first three columns of the datagrid by setting the following&amp;#58;  FrozenColumnCount&amp;#61;&amp;#34;3&amp;#34;. It&amp;#39;s working fine, but I have three group headers, which do not get frozen while scrolling. Is there any way to freeze them too&amp;#63;&lt;br /&gt;&lt;br /&gt;Thank you&lt;br /&gt;&lt;br /&gt;Angelo&lt;br /&gt;Comments: ** Comment from web user: cuongnv3 ** &lt;p&gt;It&amp;#39;s a very serious problem with my project. Seem that no one has ever had the same problem before. Please inform me if you have any solution.&lt;/p&gt;</description><author>cuongnv3</author><pubDate>Fri, 30 Oct 2009 04:55:49 GMT</pubDate><guid isPermaLink="false">Commented Issue: Datagrid frozen columns and group header [10741] 20091030045549A</guid></item><item><title>Commented Issue: Datagrid frozen columns and group header [10741]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10741</link><description>Dear all&lt;br /&gt;&lt;br /&gt;I am using the datagrid from the toolkit. I am freezing the first three columns of the datagrid by setting the following&amp;#58;  FrozenColumnCount&amp;#61;&amp;#34;3&amp;#34;. It&amp;#39;s working fine, but I have three group headers, which do not get frozen while scrolling. Is there any way to freeze them too&amp;#63;&lt;br /&gt;&lt;br /&gt;Thank you&lt;br /&gt;&lt;br /&gt;Angelo&lt;br /&gt;Comments: ** Comment from web user: cuongnv3 ** &lt;p&gt;It&amp;#39;s a very serious problem with my project. Seem that no one has ever had the same problem before. Please inform me if you have any solution.&lt;/p&gt;</description><author>cuongnv3</author><pubDate>Fri, 30 Oct 2009 04:55:39 GMT</pubDate><guid isPermaLink="false">Commented Issue: Datagrid frozen columns and group header [10741] 20091030045539A</guid></item><item><title>Created Issue: DataGrid handles CTRL+TAB key and thus TabControl cannot see it [10835]</title><link>http://wpf.codeplex.com/WorkItem/View.aspx?WorkItemId=10835</link><description>When DataGrid is within TabControl, and when the keyboard focus is on the DataGrid, CTRL &amp;#43; TAB does not switch between tabs.&lt;br /&gt;&lt;br /&gt;It works as expected when the focus is not on the DataGrid.&lt;br /&gt;</description><author>kojiishi</author><pubDate>Tue, 27 Oct 2009 05:26:38 GMT</pubDate><guid isPermaLink="false">Created Issue: DataGrid handles CTRL+TAB key and thus TabControl cannot see it [10835] 20091027052638A</guid></item></channel></rss>