About 40,200 results
Open links in new tab
  1. Repeater, ListView, DataList, DataGrid, GridView ... Which to choose?

    Sep 26, 2008 · So many different controls to choose from! What are best practices for determining which control to use for displaying data in ASP.NET?

  2. Use MudBlazor MudDataGrid ServerData to load paged data from …

    Aug 30, 2023 · Programmatically Set Filters We can interact with the dataGrid after it exists, and at which point we can refer to columns from the RenderedColumns collection. So, since we …

  3. WPF Custom datagrid column header - Stack Overflow

    Mar 2, 2013 · I need to create a Custom dataGrid DataGridTextColumn like the sketch below: The Red rectangles are TextBox and are used to search within the column. so far i have …

  4. wpf - How to set DataGrid's row Background, based on a property …

    Aug 5, 2013 · In my ViewModel class I have an ObservableCollection<z> which is the ItemsSource of this DataGrid, and a SelectedItem of type z. I could bind the color to …

  5. c# - Adding A Row To A DataGrid In WPF? - Stack Overflow

    Jul 7, 2016 · So in WinForms you can easily add a row, for example dataGridView1.Rows.Add (user.Handle, c); But in WPF, when I try to use a DataGrid there is no 'Rows' property.

  6. reactjs - The Data Grid component requires all rows to have a …

    Mar 28, 2022 · I know I have to use getRowId, but how do I use statId in oppose to id? It is unique. Or generate an id property for each one of them? Error: MUI: The data grid component …

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

    Feb 9, 2016 · @JoelH then don't add that column in datagrid and bind that column to row header.

  8. datagrid - C# - How to get cell value from DataGridView ... - Stack ...

    Dec 15, 2022 · I'm using a three columns DataGridview. Two columns are filled by data read with SQL. The third column is a checkbox. I tried to use these two code snippets: for (int i=0, …

  9. c# - How to clear a data grid view - Stack Overflow

    Oct 30, 2012 · I am trying to populate a DataGridView based on the selected item in a ComboBox, I have this part working. However, I need to be able to clear the grid before adding …

  10. How to set the DataSource of a DataGrid in WPF?

    Mar 22, 2011 · I need to set a table from a database to be the DataSource of a GridGrid in WPF. In Windows Forms the property is called DataSource but in WPF no such property exists, so …