DataGrid - row selectors missing
Hi ata6502, I am marking your issue as "Answered", if you have new findings about your issue, please let me know. Best regards,Sheldon _Xiao MSDN Community Support | Feedback to usDevelop and promote...
View ArticleDataGrid - row selectors missing
That what you mean is not a standard behavior of the wpf DataGrid. To show the small pointer as in WinForms follow this link.Best regards,Chris
View ArticleDataGrid - row selectors missing
You've just reproduced it. The row selectors on the left of every row are missing. For example, the highlighted row should have a small triangle indicating the currently selected row.LeszekWiki:...
View ArticleDataGrid - row selectors missing
Hi,when I using your code I get the following result:It seems that I cannot reproduce, your issue.Best regards,Chris
View ArticleDataGrid - row selectors missing
Here is the code. I've actually created a sample code but it reflects the real code exactly. There are two collections: the main collection Customers and the nested (child) collection Orders.The...
View ArticleDataGrid - row selectors missing
could you share a simple sample with me to reproduce it on my side?Sheldon _Xiao MSDN Community Support | Feedback to usDevelop and promote your apps in Windows Store Please remember to mark the...
View ArticleDataGrid - row selectors missing
I set all the properties you suggested on my DataGrid:SelectionUnit="FullRow" IsEnabled="True" IsReadOnly="False" IsHitTestVisible="True"It did not help. The DataGrid still does not show row...
View ArticleDataGrid - row selectors missing
Hi ata6502,Additional, you need to check whether your DataGrid could get the mouse event or not, if your datagrid could get mousedown event, I think the row could get selected if IsEnabled = ture,...
View ArticleDataGrid - row selectors missing
Hi,do you have tried to use SelectionUnit="FullRow" in XAML?Best RegardsChris
View ArticleDataGrid - row selectors missing
Bootstrap2: the link you recommnded is about a 3rd party ASP.NET DataGrid control. I have a problem with the built-in WPF DataGrid (available since .NET 4.0). Is there any connection between these two...
View ArticleDataGrid - row selectors missing
Hi,have you visited this link :http://www.infragistics.com/community/forums/t/58657.aspxOne good question is equivalent to ten best answers.
View ArticleDataGrid - row selectors missing
Hi, I have a simple DataGrid:<DataGrid x:Name="gridEvents" CanUserAddRows="True" CanUserDeleteRows="True" AutoGenerateColumns="True" HeadersVisibility="All" ItemsSource="{Binding...
View Article