Tagged Questions
A general technique that binds two data/information sources together and maintains them in sync.
110
votes
14answers
21k 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 ...
95
votes
7answers
71k views
How do I use WPF bindings with RelativeSource?
How do I use RelativeSource with WPF bindings and what are the different use-cases?
48
votes
2answers
20k views
WPF: ListBox vs. ListView - how to choose for data binding
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 ...
36
votes
6answers
35k 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, ...
35
votes
4answers
5k 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 ...
34
votes
7answers
112k 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 ...
33
votes
2answers
17k 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:
...
31
votes
6answers
16k 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() {...}
}
...
30
votes
8answers
13k 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 ...
28
votes
3answers
13k 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 ...
26
votes
4answers
54k 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}" />
...
23
votes
3answers
19k 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" ...
23
votes
9answers
11k 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 ...
23
votes
6answers
33k 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 ...
23
votes
4answers
16k 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 ...
21
votes
5answers
7k 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,
...
21
votes
4answers
4k 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 ...
20
votes
4answers
4k 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 ...
20
votes
3answers
13k views
Problem 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;
...
20
votes
6answers
4k 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 ...
20
votes
7answers
21k 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 ...
20
votes
6answers
8k 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 ...
19
votes
3answers
795 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) {
...
19
votes
3answers
8k 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" ...
19
votes
7answers
10k 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 ...
19
votes
11answers
3k 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 ...
18
votes
1answer
4k 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 ...
18
votes
9answers
13k 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 ...
17
votes
5answers
3k views
Swing data binding frameworks
Almost the same question has been asked a year ago, but the there has been some new development in this area.
Selecting a (data binding) framework for swing application seems to be quite difficult. ...
17
votes
6answers
11k views
How can I populate a WPF combo box in XAML with all the items from a given enum?
The title pretty much stays it all. Say I have an enum with four values:
public enum CompassHeading
{
North,
South,
East,
West
}
What XAML would be required to have a ComboBox be ...
16
votes
3answers
743 views
Using BindingSource to bind to Nested Properties - or, Making Entities Bindable
Binding to a nested property is easy enough:
checkBox1.DataBindings.Add(new Binding("Checked", bindingSource, "myProperty")); //Normal binding
checkBox2.DataBindings.Add(new Binding("Checked", ...
16
votes
1answer
545 views
Workaround for binding expression list on binding group being empty
In WPF 4 the binding expression list on the binding group, which is passed to the ValidationRule's Validate method, is empty.
It is the same whether AutoGenerateColumns is true or false, whether ...
16
votes
11answers
2k views
Strongly typed databinding in WPF/Silverlight/XAML?
One of my biggest pet peeves with how databinding works with XAML is that there's no option to strongly type your databindings. In other words, in C#, if you want to access a property on an object ...
16
votes
5answers
11k 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 ...
16
votes
7answers
10k 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 ...
15
votes
5answers
7k 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 ...
15
votes
8answers
1k views
I'm new to .NET - what should I concentrate on and what should I ignore?
So, I've had a fair amount of experience programming database driven web apps using php and coldfusion (not together, at different times) and I'm starting to look into the asp.net world (I have a ...
15
votes
4answers
3k 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 ...
15
votes
3answers
973 views
When should I use # and = in ASP.NET controls?
I have been using ASP.NET for years, but I can never remember when using the # and = are appropriate.
For example:
<%= Grid.ClientID %>
or
<%# Eval("FullName")%>
Can someone explain ...
14
votes
4answers
31k views
JAXB: How should I marshal complex nested data structures?
I have several complex data structures like
Map< A, Set< B > >
Set< Map< A, B > >
Set< Map< A, Set< B > > >
Map< A, Map< B, Set< C > > >
...
14
votes
2answers
7k 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 ...
14
votes
7answers
8k views
Why can't I select a null value in a ComboBox?
In WPF, it seems to be impossible to select (with the mouse) a "null" value from a ComboBox. Edit To clarify, this is .NET 3.5 SP1.
Here's some code to show what I mean. First, the C# declarations:
...
14
votes
2answers
9k views
ObservableCollection(Of T) vs BindingList(Of T)?
I've developped some data based Winforms Application this last two years and all works fine. This application are built on layers (DataAccess, Business Logic and UI). For the Businness Logic, all my ...
13
votes
2answers
363 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 ...
13
votes
6answers
543 views
Force binding in WPF
I'm writing tests which will check correctness of Binding elements specified in XAML. They work so far, the only issue is that I do not know how to correctly force databinding to happen. Surprisingly ...
13
votes
4answers
23k views
WPF — simple checkbox binding question
While it is trivial to store a checkbox's checked state in a variable using the checkbox's Click event, how would I do it via databinding? All the examples I have found have the UI updated from some ...
13
votes
6answers
18k views
Binding Silverlight UserControl custom properties to its' elements
I'm trying to make a simple crossword puzzle game in Silverlight 2.0. I'm working on a UserControl-ish component that represents a square in the puzzle. I'm having trouble with binding up my ...
13
votes
2answers
10k views
Dictionary<T> of List<T> and ListViews in ASP.NET
Preamble
I'm asking this question because even though I've read through a lot of ListView resources, I'm still not 'getting' it.
Background
I have a bunch of Foo's that have a list of items ...
13
votes
7answers
23k views
Data Grid in ASP.NET MVC
Is it possible to use a datagrid control in a mvc "view"?
How would I bind it to a datasource?
12
votes
1answer
8k views
WPF TabControl Databinding
I'm trying to build a WPF user interface containing a TabControl, and a TextBlock.
I want to bind these two controls to an underlying collection of instances of the following class:
class PageModel
...