I have a data grind in WPF that is filled by a class. I have a button that in each row. I'm trying to make it so that when the button is clicked after ...
I have a data grind in WPF that is filled by a class. I have a button that in each row. I'm trying to make it so that when the button is clicked after ...
I have 2 DataGrid to display information from 2 tables I get from Database MySQL. I'm using MVVM pattern and I have 2 ViewModel called: "CheckJigInfoV ...
In my program I have varying number of columns, so I've created universal input window for that which returns an array of strings Now I want to add ...
I have a WPF DataGrid that is bound to an ObservableCollection that is populated through an Entity Framework query. I'm able to make edits to the cont ...
In WPF i need, then i click button, i`m adding new row with information to DataGrid. But than I hit the buttin, new rows a creating, but its fill emlp ...
I use this code to add a TextBox to a DataGrid cell: (no, I can't use XAML here) I there a way to get the underlying TextBox control without XAML? ...
I am having a conflict between two features that I want in my DataGrid. The definition of the DataGrid is as follows: dgSalesOrders_PreviewMouseLef ...
I have a DataGrid with a collection of parameters, each of which have properties for name and a value. Each parameters' value can be one of a multitud ...
I can't seem to find this answer via searching and cannot connect to the dots from other examples to my scenario. Using MVVM Pattern: How do I bi ...
The datagrid I have made won't let me clear the values. When I attempt to do a datagrid.columns.clear(); then it scrunches the rows together and doesn ...
Here's a simple WPF program (most of the code is in the code-behind): MainWindow.xaml: MainWindow.xaml.cs: You'll need the System.Management.Au ...
My WPF MVVM app's DataGridColumn 'Amount' has two patterns depends on 'Currency': - USD amount: "1,000.12" (Allow decimal point) - JPY amount: "5,000 ...
I have a DataGrid with a delete button for each row, hooked to the Delete command. The button needs to be clicked twice to delete the row, which is no ...
I have written a custom control which derives from Datagrid. When I use the custom grid, it displays an overlapping column header behind others and I' ...
I've tried to compute a column in my datagrid, i will be showing these in my code as per below. I Keep getting these error. I've go through these lin ...
I tried looking for the solutions, but most are outdated and are not available currently. For example There is no columnheadesdefaultcellstyle any ...
I want to export datagrid rows in to an Excel file. Some information are in English and some others are in Perisan. I have searched a lot and tested t ...
I am creating a DataGridRadioButtonColumn for my WPF project. Here is what it looks like: And here is an example of its use: Everything works as ...
I have problem on setting the selection on DataGrid. I save the SelectedIndex, but when I want to set it back after some refresh, it doesn't seem to w ...
In my solution I create two lists and where I add data by iterating over an input dataset. Both lists are built fine and contain the expected da ...