About 83,700 results
Open links in new tab
  1. How can I set the color of a selected row in DataGrid

    In my case, the reason was that I also had a CellStyle in my datagrid, and the CellStyle overrode the RowStyle I was setting. Interestingly so, because the CellStyle wasn't even setting the …

  2. DataGrid refresh on Reload/LoadData - Blazor Server - Radzen

    May 13, 2020 · Hi, I am currently faced with something I would consider to be a bug: I have a DataGrid which get's its data assigned in the LoadData event. Everything starts to work out, if I …

  3. c# - Datagrid binding in WPF - Stack Overflow

    The DataGrid is derived from ItemsControl, which relies on its ItemsSource property to define the collection it binds its rows to. Hence, if list isn't a property of an object bound to your control's …

  4. Radzen

    4 days ago · A place to discuss Radzen

  5. c# - How to add data to DataGridView - Stack Overflow

    30 first you need to add 2 columns to datagrid. you may do it at design time. see Columns property. then add rows as much as you need.

  6. Handle RowSelect in DataGrid - Blazor Server - Radzen

    Aug 5, 2020 · Hi @Mike_Casas, The Master detail example shows how to use the RowSelect event. The event argument is the data item which the DataGrid row is bound to. It is of the …

  7. .net - DataGridView - how to set column width? - Stack Overflow

    Most of the above solutions assume that the parent DateGridView has .AutoSizeMode not equal to Fill. If you set the .AutoSizeMode for the grid to be Fill, you need to set the AutoSizeMode …

  8. Datagrid HeaderTemplate style - Blazor Server - Radzen

    Jul 9, 2020 · Datagrid HeaderTemplate style Radzen Studio Blazor Server fr_geshock July 9, 2020, 6:11pm

  9. How to reuse WPF DataGridTemplateColumn (including binding)

    In WPF datagrids, I have a column defined as DataGridTemplateColumn which I'll need to be using on all kinds of columns. As a very simplified example please consider the below as a …

  10. Two way binding of CheckBox in a DataGrid column - Radzen

    Aug 21, 2022 · I'm struggling to get a checkbox in a datagrid to update the property associated with the item. I began with code from here. I bind the datagrid to a property in the page, that's …