A general technique that binds two data/information sources together and maintains them in sync.

learn more… | top users | synonyms (2)

189
votes
10answers
128k views

How do I use WPF bindings with RelativeSource?

How do I use RelativeSource with WPF bindings and what are the different use-cases?
177
votes
13answers
32k views

INotifyPropertyChanged vs. DependencyProperty in ViewModel

When implementing the ViewModel in a Model-View-ViewModel architecture WPF application there seem to be two major choices how to make it databindable. I have seen implementations that use ...
154
votes
6answers
38k views

How to bind RadioButtons to an enum?

I've got an enum like this: public enum MyLovelyEnum { FirstSelection, TheOtherSelection, YetAnotherOne }; I got a property in my DataContext: public MyLovelyEnum VeryLovelyEnum { get; set; ...
95
votes
1answer
35k views

ListBox vs. ListView - how to choose for data binding [closed]

I'm considering either a ListBox or a ListView for a WPF application. It seems either supports data binding and item templates. My application has a simple list of items that I intend to be able to ...
63
votes
7answers
57k views

WPF Data Binding and Validation Rules Best Practices

I have a very simple WPF application in which I am using data binding to allow editing of some custom CLR objects. I am now wanting to put some input validation in when the user clicks save. However, ...
60
votes
6answers
185k views

Binding WPF ComboBox to a Custom List

I have a ComboBox that doesn't seem to update the SelectedItem/SelectedValue. The ComboBox ItemsSource is bound to a property on a ViewModel class that lists a bunch of RAS phonebook entries as a ...
54
votes
9answers
24k views

Detecting WPF Validation Errors

In WPF you can setup validation based on errors thrown in your Data Layer during Data Binding using the ExceptionValidationRule or DataErrorValidationRule. Suppose you had a bunch of controls set up ...
52
votes
6answers
9k views

How to make Databinding type safe and support refactoring

When I wish to bind a control to a property of my object, I have to provide the name of the property as a string. This is not very good because: If the property is removed or renamed, I don’t get a ...
50
votes
2answers
25k views

How can I set the text of a WPF Hyperlink via data binding?

In WPF, I want to create a hyperlink that navigates to the details of an object, and I want the text of the hyperlink to be the name of the object. Right now, I have this: ...
46
votes
6answers
28k views

Bind to a method in WPF?

How do you bind to an objects method in this scenario in WPF? public class RootObject { public string Name { get; } public ObservableCollection<ChildObject> GetChildren() {...} } ...
40
votes
7answers
15k views

databind the Source property of the WebBrowser in WPF

Does anyone know how to databind the .Source property of the WebBrowser in WPF ( 3.5SP1 )? I have a listview that I want to have a small WebBrowser on the left, and content on the right, and to ...
39
votes
3answers
31k views

WPF ListView: Attaching a double-click (on an item) event

I have the following ListView: <ListView Name="TrackListView"> <ListView.View> <GridView> <GridViewColumn Header="Title" Width="100" ...
39
votes
6answers
49k views

How do I bind a WPF DataGrid to a variable number of columns?

My WPF application generates sets of data which may have a different number of columns each time. Included in the output is a description of each column that will be used to apply formatting. A ...
39
votes
0answers
557 views

Live Binding with Automatic updates in XE3 (no need to call Notify() as in XE2)

I am currently using Delphi XE2, and heard about their new Live Binding with Automatic updates in XE3 (no need to call Notify() as in XE2). in C# or in Delphi XE2 we have to implement ...
38
votes
5answers
34k views

Binding to static property

I'm having a hard time binding a simple static string property to a text box. Here's the class with the static property: public class VersionManager { private static string filterString; ...
36
votes
6answers
38k views

Jackson with JSON: Unrecognized field, not marked as ignorable

I need to convert a certain JSON string to a Java object. I am using Jackson for JSON handling. I have no control over the input JSON (I read from a web service). This is my input JSON: ...
36
votes
5answers
76k views

Image UriSource and Data Binding

I'm trying to bind a list of custom objects to a WPF Image like this: <Image> <Image.Source> <BitmapImage UriSource="{Binding Path=ImagePath}" /> ...
34
votes
5answers
8k views

How to detect broken WPF Data binding?

While trying to answer a question in the vicinity 'Unit Testing WPF Bindings' I had the following niggling question.. What's the best way to find if you have WPF Data Binding wiring setup incorrectly ...
34
votes
4answers
19k views

Binding ComboBoxes to enums… in Silverlight!

So, the web, and StackOverflow, have plenty of nice answers for how to bind a combobox to an enum property in WPF. But Silverlight is missing all of the features that make this possible :(. For ...
34
votes
5answers
14k views

OneWayToSource binding from readonly property in Xaml

I'm trying to bind to a Readonly property with OneWayToSource as mode, but it seems this cannot be done in XAML: <controls:FlagThingy IsModified="{Binding FlagIsModified, ...
32
votes
9answers
16k views

WPF CommandParameter is NULL first time CanExecute is called

I have run into an issue with WPF and Commands that are bound to a Button inside the DataTemplate of an ItemsControl. The scenario is quite straight forward. The ItemsControl is bound to a list of ...
31
votes
7answers
33k views

Richtextbox wpf binding

To do DataBinding of the Document in a WPF RichtextBox, I saw 2 Solutions so far, which are to derive from the RichtextBox and add a DependencyProperty, and also the solution with a "proxy". Neither ...
31
votes
5answers
9k views

Pushing read-only GUI properties back into ViewModel

I want to write a ViewModel that always knows the current state of some read-only dependency properties from the View. Specifically, my GUI contains a FlowDocumentPageViewer, which displays one page ...
31
votes
3answers
2k views

Binding JSON to nested Grails Domain Objects

I'm developing a RESTful interface which is used to provide JSON data for a JavaScript application. On the server side I use Grails 1.3.7 and use GORM Domain Objects for persistence. I implemented a ...
30
votes
5answers
19k views

Is it possible to bind a Canvas's Children property in XAML?

I'm a little surprised that it is not possible to set up a binding for Canvas.Children through XAML. I've had to resort to a code-behind approach that looks something like this: private void ...
30
votes
4answers
16k views

ASP.NET Repeater bind List<string>

I am binding a List<string> to a Repeater control. Now I want to use the Eval function to display the contents in ItemTemplate like <%# Eval("NAME") %>. But I am not sure what I ...
29
votes
4answers
25k views

How to populate a WPF grid based on a 2-dimensional array

I have a 2-dimensional array of objects and I basically want to databind each one to a cell in a WPF grid. Currently I have this working but I am doing most of it procedurally. I create the correct ...
29
votes
6answers
9k views

When should I open and close a connection to SQL Server

I have a simple static class with a few methods in it. Each of those methods open a SqlConnection, query the database and close the connection. This way, I am sure that I always close the connection ...
29
votes
2answers
14k views

Managing multiple selections with MVVM

On my journey to learning MVVM I've established some basic understanding of WPF and the ViewModel pattern. I'm using the following abstraction when providing a list and am interested in a single ...
29
votes
4answers
8k views

What approaches are available to dummy design-time data in WPF?

I am working without expression blend and just using the XAML editor in vs2010. The wisdom of this aside, I am increasingly seeing a need for design-time data binding. For simple cases, the ...
29
votes
2answers
13k views

List<T> vs BindingList<T> Advantages/DisAdvantages

Can someone describe what the difference between the two are for my project. Currently I have a List<MyClass> and set the BindingSource to that and a DataGridView to the BindingSource. I have ...
26
votes
2answers
24k views

WPF Databinding: How do I access the “parent” data context?

I have a list (see below) contained in a window. The window's data context has two properties, Items & AllowItemCommand. How do I get the binding for the Hyperlink's Command property needs to ...
26
votes
7answers
70k views

how to bind a list to a combobox? (Winforms)

I want to connect a binding source to a list of class objects and then objects value to a combo box can anyone suggest how to do it public class Country { public string Name { get; set; ...
26
votes
4answers
14k views

MVVM radiobuttons

Someone please help. I have an interesting issue. I am trying to implement an MVVM app and I want to bind to radiobuttons in my view. Here's my view: <StackPanel Orientation="Horizontal" ...
25
votes
5answers
13k views

ElementName Binding from MenuItem in ContextMenu

Has anybody else noticed that Bindings with ElementName do not resolve correctly for MenuItem objects that are contained within ContextMenu objects? Check out this sample: <Window ...
25
votes
9answers
15k views

ListBox with Grid as ItemsPanelTemplate produces weird binding errors

I've got a ListBox control and I'm presenting a fixed number of ListBoxItem objects in a grid layout. So I've set my ItemsPanelTemplate to be a Grid. I'm accessing the Grid from code behind to ...
24
votes
12answers
5k views

WPF Databind Before Saving

In my WPF application, I have a number of databound TextBoxes. The UpdateSourceTrigger for these bindings is LostFocus. The object is saved using the File menu. The problem I have is that it is ...
24
votes
1answer
7k views

Animate WPF Datatemplate when item added to Listbox?

In my project I have a WPF Listbox bound to an ObservableCollection. Every time I add a new item to the Collection the same item is added to the Listbox automaticly. To display the items in the ...
23
votes
7answers
15k views

How can I do Databinding in c#?

I have the following class public class Car { public Name {get; set;} } and I want to bind this programmatically to a text box. How do I do that? Shooting in the dark: ... Car car = new ...
23
votes
1answer
18k views

MVVM: Binding to ListBox.SelectedItem?

How do I bind a view model property to the ListBox.SelectedItem property? I have created a simple MVVM demo to try to figure this one out. My view model has these properties: private ...
23
votes
4answers
30k views

winForms + DataGridView binding to a List<T>

So, every few months I write something in WinForms to remind myself why I hate it. Today is the day. I'm trying to bind a List<T> to a DataGridView control, and I'm not having any luck ...
22
votes
6answers
14k views

ASP.NET repeater alternate row highlighting without full blown <alternatingitemtemplate/>

I'm trying to accomplish simply adding a css class to a div on alternate rows in my <itemtemplate/> without going to the overhead of including a full blown <alternatingitemtemplate/> which ...
22
votes
4answers
17k views

WPF Bind to class member in code behind

Pretty simple question, but can't seem to find a complete answer on here... I need to databind in xaml to a property of a class member in codebehind. <Window x:Class="Main"> ...
22
votes
4answers
19k views

Binding a list in @RequestParam

I'm sending some parameters from a form in this way: myparam[0] : 'myValue1' myparam[1] : 'myValue2' myparam[2] : 'myValue3' otherParam : 'otherValue' anotherParam : 'anotherValue' ...
22
votes
4answers
6k views

WPF databinding to interface and not actual object - casting possible?

Say I have an interface like this: public interface ISomeInterface { ... } I also have a couple of classes implementing this interface; public class SomeClass : ISomeInterface { ... } Now I have ...
22
votes
4answers
2k views

How to prevent parameter binding from interpreting commas in Spring 3.0.5?

Consider the following controller method: @RequestMapping(value = "/test", method = RequestMethod.GET) public void test(@RequestParam(value = "fq", required = false) String[] filterQuery) { ...
22
votes
9answers
19k views

Best data binding solution for GWT

Have you ever used one of the many half-baked data binding solutions for GWT? If so, how well did it work? I'd like to stop rolling my own bindings for GWT but there's no clear winner in the data ...
21
votes
3answers
12k views

Bind dictionary to repeater

I have a dictionary object <string, string> and would like to bind it to a repeater. However, I'm not sure what to put in the aspx markup to actually display the key-value pair. There are no ...
21
votes
3answers
6k views

Is there a way to chain multiple value converters in XAML?

I've got a situation in which I need to show an integer value, bound to a property on my data context, after putting it through two separate conversions: Reverse the value within a range (e.g. range ...
21
votes
4answers
10k views

How to stop a comboBox's selectedIndexChanged event from firing when the form loads

I have a form with a ComboBox that provides a dropdownlist. On the comboBox's SelectedIndexChanged event, am running some code, but I don't want that code to run when the form loads. Unfortunately, ...

1 2 3 4 5 195