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

    Like the DataGrid control, the GridView control was designed to display data in an HTML table. When bound to a data source, the DataGrid and GridView controls each display a row from a …

  2. How can I hide a column in a MUI X Data Grid? - Stack Overflow

    Mar 23, 2022 · There are column hiding filters in the column header cells or you can add GridToolbar to the data grid options which will give you a small toolbar above the grid for …

  3. How to center the content of cells in a data grid? - Stack Overflow

    I set the min height of a datagrid that way: <DataGrid MinRowHeight="40"> After feeding the datagrid with datas, the text in each cell is top and left aligned.

  4. How can I set the width of a DataGridColumn to fit contents …

    I have a WPF DataGrid that contains some data. I would like to set the width of the columns such that the content fits in and never gets cropped (instead, a horizontal scroll bar should become …

  5. c# - 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 …

  6. Getting WPF Data Grid Context Menu Click Row - Stack Overflow

    Typically, you do not deal with rows (if you do - think again about the reasons) - instead you work with view model. When you open context menu, you get your item selected, so it can be …

  7. 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?

  8. How to make the last column in WPF datagrid take all the left …

    Jun 10, 2015 · Standard WPF 4 Datagrid. Let' say I have datagrid 200 pixels wide, and 2 columns. I would like the columns take always entire space, meaning if the user resizes the first column …

  9. Populate a datagridview with sql query results - Stack Overflow

    I'm trying to present query results, but I keep getting a blank data grid. It's like the data itself is not visible Here is my code: private void Employee_Report_Load(object sender, EventArgs e...

  10. c# - Datagrid vs Gridview - Stack Overflow

    Jan 19, 2011 · Possible Duplicate: The Difference Between a DataGrid and a GridView in ASP.NET? What is main difference between Data grid and Grid View in asp.net?