0
votes
2answers
38 views

How to preprocess/convert data of a databinding?

I am creating a DataGrid that is going to define (through user-input) the X and Y values of a curve which will be presented on the same window. The curve is going to be defined by a Path containing a ...
0
votes
1answer
43 views

Databinding in RowDetailsTemplate doesn't work

I have simple Datagrid with binding and this one works correctly and inside RowDetailsRemplate another Datagrid but in that case binding does not work. Can you give me a hand with sorting this out? ...
1
vote
1answer
32 views

WPF DataGrid - how to suspend UI updates from databind and do a bulk update later

Having to do a lot of cell-by-cell changes in code on my source DataTable, I need a way to temporarily halt it sending data-binding updates to its bound DataGrid: I have a DataGrid bound to a ...
0
votes
2answers
31 views

WPF How to make DataGrid blank out certain columns based on a value in one of bound columns

I have a DataGrid that should display values from a datatable object. I need it to display one row for each in the datatable, but if column ShowRow in the DataTable is set to False, I need all but ...
1
vote
0answers
33 views

TwoWay binding a table to a datagrid which has a ComboBox column and bind to another table?

TwoWay binding a table to a datagrid which has a ComboBox column and bind to another table? I have a datagrid which is twoway bind to table Accounts. Whenever the update button is clicked, I'll ...
0
votes
2answers
37 views

Binding an object to a datagrid column

I have an employee class which contains an instance of a person class: List<Employee> emp = (AdventureWorks.Employees.Select(n => n)).ToList(); showgrid.ItemsSource = emp; ...
0
votes
1answer
28 views

Catch exception during DataGrid editing?

I am replicating a GUI version of the 'touch' command, for a user at work. I have a WPF DataGrid that I am binding to a List<FileInfo> object. When the user changes the CreationTime (for ...
0
votes
1answer
64 views

DataGridComboBoxColumn binding to ObservableCollection

I have the class Devices with Platform as one of the properties: public partial class DevicesCollection : ObservableCollection<Device> { public DevicesCollection() : base() { } } ...
2
votes
2answers
124 views

DataGrid that uses binding to create table with comboboxes

I have a DataGrid that should have a text column for the first column, and then the succeeding columns should be combo boxes with a different set of items for each column. The problem is that the ...
0
votes
1answer
45 views

How to Sort a DataGridTextColumn which uses a MultiBinding Converter

I use a multibinding with a value converter to provide the visual display of a collection of items in my DataContext. Here is a snippet of the XAML; <DataGrid.Columns> ...
0
votes
1answer
86 views

Displaying elements of ObservableCollection in data grid columns

I have a program where I am reading a .csv file with 2 columns, and my model has 2 properties. I take instances of this model as the file is read and then add them to my ObvervableCollection. Here is ...
1
vote
1answer
121 views

How to dynamically create a datagrid in WPF?

I have the following datagrid in XAML: <DataGrid ItemsSource="{Binding View}" AutoGenerateColumns="False" IsReadOnly="True" GridLinesVisibility="None" CanUserAddRows="False" ...
0
votes
1answer
58 views

Binding a combobox selected item content to an element

I am working with WPF using Entity Framework and Data Binding for managing PRODUCT and BRAND in a database. PRODUCT includes a BrandID property. In order to display in a datagrid a brand name instead ...
1
vote
1answer
48 views

Disable Specific DataGrid Cells with Binding

I'm trying to bind a list of custom data objects to a data grid and achieve the following behavior. Populate the grid Disable certain cells based on object data. Consider the following DataGrid ...
0
votes
1answer
49 views

OnPropertyChanged not firing when combobox first item is selected in a datagrid

I have a combobox in a WPF gridview like so: <DataGridComboBoxColumn Header="Type" SelectedItemBinding="{Binding Path=Type, UpdateSourceTrigger=PropertyChanged}" ...
1
vote
1answer
84 views

How to get index of current collection element while building DataGrid with DataGridTemplateColumn?

I'm trying to display an array in a DataGrid like this: XAML: <DataGrid ItemsSource="{Binding Items}" AutoGenerateColumns="False" > <DataGrid.Columns> ...
1
vote
2answers
55 views

View / Edit dynamic parameters in a grid

I'm evaluating the possibilities to view and edit parameters in a C#/WPF/MVVM application. I'm currently looking into some custom controls from WPF Woolkit Extended, Telerik, DevExpress and ...
0
votes
2answers
95 views

ObservableCollection with INotifyPropertyChanged into DatagridComboboxColumn Binding

My little project looks now quite different. Now I have ObservableCollection PackagesList with data which I want to bind with whole DataGrid (via Binding Path) and ObservableCollection ...
1
vote
1answer
74 views

Binding data grid values to another data grid

I have two datagrids. The first contains the columns: name, price, rank, rating, groupNumber ..... and many other columns And the second contains: name, rating, groupNumber Suppose I selected a ...
0
votes
1answer
33 views

Page postback - double binding

I've got a webpage that has a datagrid that's built dynamically depending on the date and filters selected. On itemdatabound a linkbutton is created for each cell so when clicked will open a modal ...
0
votes
1answer
64 views

Why windows form controls does not need a DataBind()? [closed]

My question may be silly But I expect someone to answer this. In .net Web applications we have to call the DataBind() method after setting the source for any data control. But in windows forms there ...
1
vote
1answer
179 views

WPF DataGrid to BindingList not working, never shows results

I'm trying to bind data to a DataGrid via a property and then later update that property to change(sorting) the results in the datagrid. I initially bind the DataGrid: BindingList<Booking> ...
0
votes
1answer
197 views

WPF Datagrid binding error when NOT auto-generating columns

I have a simple datatgrid that works when I define it in the following way: <DataGrid ItemsSource="{Binding EmployeeCollectionViewSource.View}" ...
0
votes
0answers
85 views

WCF Dataservicecollection Binding don't shows any Data in DataGrid

I'm currently trying to bind a Dataservicecollection to a Datagrid. The DataServicecollection is provided with data, by an WCF DataService. The collection does contain entities (checked via ...
6
votes
1answer
70 views

How can I access the data object of a DataGridCell in code?

Basically I've bound the datagrid so that it resembles a timetable of subjects - each row represents a semester of subjects, and each cell within that semester represents a subject. I'm now trying to ...
2
votes
1answer
127 views

How can I perform a custom action on the data of a DataGridRow when it is selected?

I've been trying to figure out how to get this custom behaviour into a datagrid with out having much look when searching online for solutions. Given the following datagrid (some xaml removed for ...
1
vote
1answer
448 views

DataGrid bind command to row select

I want to execute a command when the user selects a row in a DataGrid. I see it is possible to wrap cell contents in buttons (although I don't want the button style) - but I don't want to do it at ...
1
vote
1answer
121 views

ComboBox in DataGridTemplateColumn. Binding not working

In my WPF window, I have declared the following: public List<Brand> BrandList; and then in the constructor, the list is populated: BrandList = new ...
0
votes
1answer
80 views

Binding array of arrays or dynamic to a datagrid

I am attempting to bind an array of arrays to a DataGrid. I am aware that I could do this fairly easily by converting the data to a DataTable and then binding that. BUT this isn't what I need as I ...
3
votes
2answers
311 views

WPF DataBinding ObservableCollection<T> to DataGrid

I am trying to create DataGrid in a separate UserControl whose DataContext is a List of T. In the code behind, I create a List, populate the list, then send it to the constructor for the UserControl ...
0
votes
1answer
200 views

Bind an ObservableCollection to a wpf datagrid : Gris stay empty

I would like to bind an ObservableCollection to wpf datagrid. My ObservableCollection is not empty, but, my datagrid stay empty : public partial class Fenetre_EvtCode : Window { ...
0
votes
1answer
77 views

Selected item is not synchronizing with selected items - a WPF DataGrid

How can it be that SelectedItem is null and SelectedItems have an item selected? Here's the screenshot from selection changed event: My DataGrid: <DataGrid ...
0
votes
1answer
110 views

Exclude columns from a databound datagrid in WPF

I have an ObservableCollection<SolarSystemViewModel> where SolarSystemViewModel derives from the ViewModelBase. The ViewModelBase exposes IsInDesignMode and IsInDesignModeStatic that are ...
-1
votes
1answer
81 views

Binding The content of a Grid in WPF [closed]

is there any way to bind the content (children) of a grid to a source of data of data(I mean objects)? for example binding the content of a grid to a list of buttons
0
votes
0answers
44 views

Personalized DataGridCell With binding of a DataGrid to a DataTable

What is the best manner to bind a DataGrid to a DataTable, knowing that the DataTable contains objects like for ex : a border, and the cells in the DataGrid should be bound to the DataTable Content. ...
0
votes
1answer
216 views

Customised WPF DataGrid with dropdown menus in header

I'm trying to create a DataGrid which has drop-down menus in the headers and I'm not sure how to go about doing so. The DataGrid itself is populated from a CSV file which can have many different ...
3
votes
1answer
126 views

Binding dynamic text with image in one column and Select entier column in datagrid of wpf

Please let me know how to perform this kind of functionality with WPF DataGrid. And also let use know how to select entire column of a DataGrid of WPF.
0
votes
0answers
67 views

DataGridTemplateColumn Header binding to resources.

I am trying to bid DataGridTemplateColumn's header to <Control.Resources> <ResourceDictionary> ... <res:Resource x:Key="resource" /> ...
1
vote
3answers
170 views

Bind Button to DataGrid Content

My WPF-Application contains a DataGrid with 3 Columns and a disabled Button. One Column of my DataGrid is a DataGridCheckBoxColumn. Now I want to bind Button's IsEnabled-Property, to be enable if at ...
0
votes
0answers
44 views

how to show the total value of childs in parent row in wpf grid view or radgridview?

ok here what I need to: First part is a grid with multi lair child. I mean I need a grid to add child to any row with same properties like the parent row. Even the child must have the same behavior ...
0
votes
0answers
215 views

Datagrid not updating when item added to ObservableCollection

I have a Client entity that has a collection of Notes. I have a DataGrid in my View that is databound to my Client.AuditableNotes collection and I can see the notes if they already exist in the ...
2
votes
2answers
134 views

WPF datagrid binding complex type property back

I have a simple Datagrid binded to an ObservableCollection from the ViewModel. This ObservableCollection is composed by a Custom Type, say ObservableCollection. The ComplexType only have 2 ...
0
votes
0answers
148 views

C# WPF databind empty cell

I have a table with both TextBlock and ComboBox columns. If I bind the ComboBox columns the table shows me correct data but in the code some cells from a TextBlock column return in empty strings (even ...
0
votes
1answer
289 views

binding navigateURL to datagrid

I've created a datagrid and linked it to one of my tables from my database, then I want to add a hyperlink which should bind to a column from the table <asp:DataGrid ID="DataGrid1" runat="server" ...
1
vote
3answers
291 views

Updating datagrid from SQL server - update process not working

I have a SQL server and I want to show it in the main form of my app. I followed some guides and I succeeded in my attempt to link between the dataGrid and the SQL server table. The problem is that ...
2
votes
1answer
409 views

Removing rows from a WPF datagrid

I have a WPF DataGrid theDataGrid bound to a DataSet ds containing a table. I want to enable the user to remove lines by first selecting them in the grid and then pressing a button (positioned ...
0
votes
2answers
267 views

WPF MVVM DataGridColumnHeader DisplayName

I got an DataGrid in MVVM which´s ItemsSource is bound to a Custom Model. The properties in this model are named like their equivalent in the database. For example this: public string ...
0
votes
4answers
233 views

How To Bind Multiple Arrays to a DataGrid

I've got a Character object, in which I've got 10 arrays, representing 10 statistics of the character (agility, strength, etc - this is for a role playing game). The arrays keep track of the stat and ...
0
votes
0answers
49 views

Unable to view data in datagrid when bound with datatable in ASP

DataTable schedule = new DataTable(); schedule.Columns.Add("Application", typeof(string)); schedule.Columns.Add("Module", typeof(string)); schedule.Columns.Add("Start Date", typeof(DateTime)); ...
1
vote
0answers
425 views

Custom XamGrid Columns Databinding Images/Buttons/Tooltips

HI I am trying to utilize Infragistics controls in my app, particularly XamGrid. I select a bunch of parameters the the grid brings back the results. I use to have this fully functional in the ...

1 2 3 4 5 7