0
votes
0answers
16 views

WPF Binded DataGrid keep preloaded data

Class Customer { string Type, string Name } I have a DataGrid binded to an ObservableCollection<Customer> |ComboBoxColumn "Type"|TextColumn "Name"| ComboBox Items in "Type" column ...
0
votes
1answer
33 views

wpf datagrid combobox binding staticresource list of keyvalue pairs

I hope someone can help me or post a link to related question, that would have the answer. I have read most of them and thats how I got this far... So I have a datagrid with 3 columns, two of them ...
0
votes
1answer
32 views

WPF DataGrid bind cell background color to property of assigned Data object

I've got a DataGrid where the cells are assigned to a custom class defined below: public class DataGridVariableWrapper : DependencyObject { public Variable TheVariable { get; set; } public ...
0
votes
1answer
34 views

Master-detail hierarchy between a ListBox and a DataGrid

I would like to set a DataGrid.ItemsSource property according a ListBox.SelectedItem value so that whenever a category is selected in the ListBox, the DataGrid should display the appropriate ...
1
vote
1answer
37 views

BindingError 40 on DataGrid CellEditingTemplate

I have a strange bug with my DataTemplate "PersonDataTemplate" I use it as CellTemplate and asCellEditingTemplate. On my CellTemplate all works fine but on my CellEditingTemplate I get following Error ...
-1
votes
1answer
105 views

how to dynamically edit the bind data in sql using mvc3 web grid

i am new to mvc.. i have a task that, i have to bind data from existing table in sql using asp.net mvc3(Razor) Web Grid .. now i have to edit the data in webGrid.. i dont know how the edit operation ...
-1
votes
1answer
158 views

How to edit the bind data in GridView using asp.net MVC?

I have bind the data using grid in asp.net mvc3. I have a problem in edit link in the bind table. If I click on edit link it's not responding. Here's what I have: Teacher.cs public class Teacher { ...
0
votes
1answer
71 views

Binding DataGridComboBoxColumn

I am trying to bind ObservableCollection of T to DataGridComboBoxColumn of DataGrid. DataGrid definition is : <DataGrid AutoGenerateColumns="False" Grid.Row="0" ...
0
votes
1answer
87 views

Implementing Combo Box Select All button in Data Grid Template Column Header

Inside my CreateBatchViewModel class-->View Model for CreateBatch.cs I am binding Datagrid ItemsSource="{Binding VersionList,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}" where VersionList is ...
0
votes
1answer
62 views

Binding a Datagrid Columnheader Backgroud to da datatable row

I want to color my DataGrid ColumnHeader depending on a row in the datatable which is bound to the DataGrid. But how can I do this? The method I have used on the Datagrid.Row does not work, because ...
2
votes
2answers
77 views

How to change IsReadOnly by Trigger

can anybody enlight me way the following doesn't work i'm using the mvvm pattern after executing my code i'm still able to check and uncheck the Checkboxes in my DataGridCheckBoxColumn Property ...
0
votes
1answer
90 views

How to Bind Data to DataGrid at Run-Time

All, I have some test code that works with some test data defined as private ObservableCollection<TestClass> _testData = new ObservableCollection<TestClass>(); public ...
0
votes
2answers
89 views

WPF Datagrid selectedItem not update source

I'm trying to work with a datagrid using the MVVM pattern. The problem is when I select an item in datagrid for the first time, the datagrid will update the source property correctly, then I select ...
0
votes
0answers
35 views

WPF C# RightClicking exludes row from bound DataGrid

I have a DataGrid which has a bound ItemSource to a collection. I have a object, that represents the selectedItem of the DataGrid, bound as well. And i have the wish to change a property of the ...
0
votes
2answers
88 views

Datagrid value binding to an external ComboBox

I would like to be able to set the value of the current selected row>cell of a DataGrid through an external ComboBox. The code I have is working fine on the setter part, but can't make the ComboBox ...
0
votes
0answers
51 views

Get the object, that is bound to a column in DataGrid

I have a DataGrid and some DataGridTextColumn items bound to different properties. <DataGrid ItemsSource="{Binding Employees}" Style="{StaticResource ...
4
votes
1answer
257 views

Binding programmatically generated DataGridTextColumn's Visibility property to a checkbox

I'm trying to bind the visibility property of a DataGridTextColumn to the IsChecked value of a combo box (cbIP). For most columns, I have solved the problem in XAML with lines like this: ...
0
votes
2answers
149 views

WPF DataGrid binding don't work caliburn micro

I can't understand why it does not work.. This is my class public class Article : Screen { public string Code { get; set; } public string Description{ get; set; } public decimal Cost{ ...
3
votes
2answers
192 views

Binding to DataGridColumnHeader.Command

I need to use Command on DataGridColumnHeader to sort my data. Standard DataGrid sorting feature is not enough for me because there are not all data displayed in DataGrid. I don't even have all data ...
1
vote
0answers
53 views

MultiBinding on Value Changed

I have a MultiBinding on a DataGrid“s CellStyle property which calls a converter. <Setter Property="CellStyle"> <Setter.Value> <Style TargetType="{x:Type DataGridCell}"> ...
0
votes
1answer
59 views

WPF Datagrid - RowDetails binding to optional property?

I'm trying to design a WPF Datagrid, where the RowDetails (a textblock) will bind to the Details string property of the grid's ItemSource elements. <DataGrid.RowDetailsTemplate> ...
0
votes
1answer
178 views

WPF DataGrid: How to get binding expression of a cell?

I need to get access to the binding expression of the DataGrid cell in a DataGridTextColumn. For example: <DataGridTextColumn Header="Name" Binding="{Binding Name}"/> I managed to get ...
3
votes
2answers
224 views

Editing currently selected item in datagrid

Hei, I'm creating simple application with MVVM and stumbled on a problem which i find hard to resolve. On my application i have datagrid and couple of controls to edit currently selected item in ...
0
votes
0answers
138 views

RaisePropertyChanged works only when firing by UI

I have a strange problem with RaisePropertyChanged in MVVM Light. Everything in my code is correct. An ObservalbeCollection property is bound to a ListView. If I call binding code (reading from ...
0
votes
3answers
229 views

WPF C# DataGrid binding List with different types

I have a problem binding a List to a DataGrid. What I want is to have a column presenting different types, such as: [Property 1] [String] [Property 2] [bool] [Property 3] [enum] My implementation ...
1
vote
0answers
116 views

WPF datagrid cannot add a row after binding to collection with data

I have a wpf applicatiion with multiple datagrids, all bound to seperate ObservableCollections of custom objects. When the collections are empty, i see a blank row and I can add data. However, when ...
0
votes
1answer
101 views

Scroll wpf textblock to end

Is there any feature of the TextBlock that allows scrolling to the end always? I've seen a number of examples that do this in the code behind, I want to keep the principle of MVVM and not touch the ...
0
votes
1answer
71 views

DataTable as DataGrid.ItemsSource

hi i want to bind a DataTable with multiple columns to an DataGrid in codebehind var dt = new DataTable(); dt.Columns.Add(new DataColumn("1")); dt.Columns.Add(new DataColumn("2")); ...
0
votes
1answer
39 views

Bind to a column in DataGrid happens only after a line break

I have a WPF DataGrid that his columns bind to variables in ObservableCollection that sits on ViewModel, Here's the code: <DataGrid SelectedIndex="{Binding SelectedXIndex,Mode=TwoWay}" ...
2
votes
2answers
59 views

Bind Property Of the ViewModel to CurrentCell

I use a WPF DataGrid, I want to bind the text of the CurrentCell (the edited cell) with property that I have in myViewModel Is it possible to do this? EDIT: I try this way: <DataGrid ...
1
vote
1answer
141 views

IsSelected Binding in WPF DataGrid

I have in my Model (Class X) Boolean property: IsSelected, is linked to a WPF DataGrid as follows: <DataGrid SelectedIndex="{Binding SelectedXIndex,Mode=TwoWay}" DataContext="{Binding ...
0
votes
1answer
135 views

Binding ObservableCollection to datagrid in MVVM

Im new to XAML, i am trying to bind ObservableCollection to datagrid in MVVM. I want to get notified when CollectionChanged. But its throwing null exception. Please let me know when im going wrong. ...
0
votes
1answer
51 views

Bind to a WPF DataGrid disappears after saving a file

I have a WPF DataGrid: <DataGrid SelectedIndex="{Binding SelectedXIndex,Mode=TwoWay}" DataContext="{Binding MyViewModel}" ItemsSource="{Binding XList}" AutoGenerateColumns="False"> ... ...
0
votes
1answer
159 views

Problems with the selected index in the WPF DataGrid

I have a wpf DataGrid. On DataGrid the selected index is bind to a variable sitting in ViewModel. Here's the code: <DataGrid DataContext="{Binding MyViewModel}" SelectedIndex="{Binding ...
0
votes
0answers
79 views

Silverlight control updates binded property when it should not

I have a custom control in datagrid DataGridTemplateColumn.CellEditingTemplate: <DataGrid AutoGenerateColumns="False" ItemsSource="{Binding Path=Items}"> <DataGrid.Columns> ...
1
vote
2answers
145 views

Binding to property of datacontext parent- WPF

I have a DataGrid: <DataGrid x:Name="DG" ItemsSource="{Binding}" AutoGenerateColumns="False"> <DataGrid.Columns> <DataGridTextColumn Header="?" Binding="{Binding ...
0
votes
1answer
116 views

Creating a checkbox in a Xceed Datagrid in WPF

I have an application that uses the Xceed DataGrid for WPF. In it I have a column that has a checkbox and I would like the IsChecked or Checked event to call a function. Problem is with everything ...
1
vote
1answer
661 views

TwoWay Binding ObservableCollection to DataGrid in WPF not working

I have this simple DataGrid in my application. Somewhere in the source I bind the ItemsSource property of it to an ObservableCollection<System.Windows.Points>. So the points are shown in the ...
1
vote
0answers
219 views

WPF Datagrid events DataTriggers vs EventTriggers

relatively simple question that I am struggling to find a nice elegant solution to. I have a grid with a column that displays values that update every n seconds. I wish to show an animation when the ...
1
vote
2answers
113 views

DataGrid.SelectedItem not bound to currently selected cell

Ran into this issue on several occasions. When finding SelectedItem or selected column on say right click menu or selecting combo box in a cell. The SelectedItem will be null or the previously ...
0
votes
1answer
448 views

Add rows to WPF DataGrid when bound to EF Entities (do “UserCanAddRows” programmatically)

The DataGrid has a feature called "UserCanAddRows" which provides the user an empty row he can use for adding a new row to the DataGrid. However, I want to provide my users an extra control to add new ...
0
votes
2answers
62 views

WPF DataGrid Binding - Which is best?

I am fairly new to WPF and MVVM. I see that a DataGrid can be bound to a CollectionViewSource or an ObservableCollection or a DataSet. What is the significance of using one over the other?
1
vote
3answers
249 views

Column string format

I found how to use StringFormat from XAML but I need to add columns programmatically and I can't find a solution for it. The code I am using doesn't work: foreach (Fields field in fields) { ...
0
votes
0answers
88 views

datagrid, label, hyperlink, binding

Im a beginner at this asp.net dynamic data and have just been completing a few tutorials on youtube etc... I was hoping maybe now to create a datagrid, (1) which binds labels to fields (exmaple) ...
1
vote
1answer
433 views

WPF Binding with DataContext in DataGrid

I got a WPF DataGrid and in the DataGrid i want to have a column displayed dependent on a property outside of the DataGrid Context (from the ViewModel). I have the same Property binding outside of ...
1
vote
2answers
335 views

Silverlight: binding a button command within a DataGrid header within an ItemsControl

I have a bit of a problem binding a button command to a property of an "outer" data context. The image below shows the layout I have. I'm trying to bind the CommandParameter of the "Clear" button ...
0
votes
1answer
286 views

MVVM issue with binding a combobox to a datagrid

I have sort of a Master/Details view. I have some text boxes and a combo box bound to the selected item of the data grid. What I want is the text boxes and the combo box to populate with the data ...
2
votes
2answers
151 views

Animate DataGrid cell background on TargetUpdated event

I've been searching all over for a solution, but found nothing that works. The problem is simple: DataGrid (read-only) is bound to a collection of objects (implementing INotifyPropertyChanged) ...
0
votes
1answer
368 views

wpf dataGrid binding selecteditem not working

I'm tryng to bind the selectedItem of a datagrid with a property in MVVM. the problem is that it does not fire the "Set" of the property. in the xaml part i have: <WPFCtrlDg:ExtDataGrid ...
0
votes
1answer
463 views

WPF Datagrid IsReadOnly Bind to Property of the current row Item

I need some rows of my DataGrid editable and others not. <DataGrid ItemsSource="{Binding Items.View}" AutoGenerateColumns="False" CanUserAddRows="False" > ...

1 2 3 4 5 7