Top "Data-binding" questions

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

How to bind a command in WPF to a double click event handler of a control?

I need to bind the double click event of a textblock (or potentially an image as well - either way, …

wpf data-binding mvvm command double-click
What is Lazy Loading?

What is Lazy Loading? [Edit after reading a few answers] Why do people use this term so often? Say you …

data-binding lazy-loading
What exactly does WPF Data Binding's "RelativeSource FindAncestor" do?

I am currently working within a WPF user control (the root element of my XAML file is "UserControl"), which I …

wpf data-binding xaml relativesource findancestor
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 …

wpf data-binding hyperlink
Passing current scope to an AngularJS Service

Is it correct to pass the "current" $scope to an AngularJS service? I'm in the situation where I've a $service …

angularjs data-binding angularjs-scope angular-services
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 …

.net wpf data-binding templates grid
WPF BooleanToVisibilityConverter that converts to Hidden instead of Collapsed when false?

Is there a way to use the existing WPF BooleanToVisibilityConverter converter but have False values convert to Hidden instead of …

.net wpf data-binding ivalueconverter
Can't resolve Android databinding class

While using data binding , I am not able to get class MainActivityBinding as per Data Binding Guide My layout name …

android data-binding android-databinding
Binding Entity Framework objects to a Datagridview C#

I have been trying to bind an Entity Framework object to a DataGridView but I keep hitting dead ends and …

c# winforms entity-framework data-binding datagridview
How to bind a ComboBox to generic dictionary via ObjectDataProvider

I want to fill a ComboBox with key/value data in code behind, I have this: XAML: <Window x:…

c# wpf xaml data-binding combobox