About 35,100 results
Open links in new tab
  1. The Difference Between a DataGrid and a GridView in ASP.NET?

    Both the DataGrid and GridView controls are derived from the WebControl class. Although it has a similar object model to that of the DataGrid control, the GridView control also has a number of …

  2. How can I set the color of a selected row in DataGrid

    The default background color of a selected row in DataGrid is so dark that I can't read it. Is there anyway of overriding it? Tried this <dg:DataGrid.RowStyle> <Style TargetType="{x...

  3. DataGrid in .NET MAUI - Stack Overflow

    Nov 24, 2022 · The DataGrid control hasn't been available or approachable in .NET MAUI. However, you can follow up this feature request: [Enhancement] DataGrid Control on Github. …

  4. c# - WPF iterate through datagrid - Stack Overflow

    If your DataGrid is bound to a custom object collection (e.g. List<MyViewItem>) the DataGridRow iteration obviously does not work. Only if you use DataTable/DataGridView as DataGrid …

  5. c# - DataGrid Row Header WPF - Stack Overflow

    Feb 9, 2016 · I also have a DataGrid: <DataGrid x:Name="DataGridX" ItemsSource="{Binding}" Grid.Row="0" CanUserAddRows="False" SelectionUnit="Cell" /> I then set the DataContext of …

  6. Free alternative to standard C# DataGrid? - Stack Overflow

    Feb 28, 2010 · The standard DataGrid is quite unresponsive when it comes to displaying large amounts of information. I tried SourceGrid and can live with the results, but see room for …

  7. c# - Select DataGridCell from DataGrid - Stack Overflow

    Apr 2, 2012 · public static DataGridRow GetSelectedRow(this DataGrid grid) { return (DataGridRow)grid.ItemContainerGenerator.ContainerFromItem(grid.SelectedItem); } and you …

  8. winforms - Good DataGridView tutorial - Stack Overflow

    Aug 9, 2013 · I'm writing a windows C# application which I wish to use data grid views, but unable to find a good tutorial on to take complete control of the datagrid eg: add columns, add data etc.

  9. datagrid - WinUI 3 Data Grid Having Different Formatting For Each …

    Aug 15, 2024 · I'm trying to create a simple data grid in WinUI 3 that uses custom DataTemplate that vary for the second column, creating different formatting for the second column's cells …

  10. DataGrid InLine Edit support Validations - Radzen.Blazor …

    Oct 28, 2024 · Hi good people, As I read here, datagrid Inline Edit support validation, yes. But these validations, are fired only if the datagrid´s row is editted. In my form, I had a …

Refresh