By tag: DataBinding
0
kicks
PriorityBinding – Binding the async way
I keep discovering new features in wpf/silverlight data binding. The newest addition to my knowledge base is PriorityBinding. With PriorityBinding you can associate binding target property to a group of bindings. The binding with the highest priority is evaluated and become active binding.
0
kicks
notifypropertyweaver – {get;set;notify} in Silverlight
So, what does notifypropertyweaver do? If your class implements INotifyPropertyChanged then you just need to have auto-implemented properties and notifypropertyweaver automagically ensures that on change of value of a property, PropertyChanged event is fired.
0
kicks
WPF DataGrid - DataBinding to SQL Server Database
This post demonstrates how to bind the VIBlend WPF DataGrid to SQL Server DataBase
0
kicks
Easily enable databindings on a ToolStripButton
I was developping an application lately and I needed to bind the "Enabled" property of a ToolStripButton to my Presenter. I failed to find any "DataSource" or "DataBindings" property. I then decided to make my own button without reinventing the wheel to enable this capa...
0
kicks
Data Binding an Enum with Descriptions
Finally a SIMPLE, straight-forward, well thought out way to do DataBinding with an Enum.
0
kicks
Lightbox and Subtext Galleries Integration
integrate Lightbox JS into Subtext's photo galleries
0
kicks
The ten deceptions of the DatTimePicker
Details all the shortcomings of the MS DateTimePicker control. Seems it will provide a solution...
0
kicks
Getting the most out of .NET data binding
Data binding is a great way to work with data and UI controls, but there’s a lot more to it than just setting the DataSource property of a grid. The .NET framework provides interfaces and components that will let the framework do most of the work for you — as long as you set it up right.
0
kicks
Beware DataContext and Equals Overrides
Something to look out for when binding to objects that override Equals() in WPF.
0
kicks
ASP.NET 2.0 DataBinding Examined
Checking out how ASP.NET 2.0 databinding features work under the hood.
0
kicks
DataView for objects
Author presents a DataView-style construct for collections of arbitrary objects. This class allows an application to bind separate UI controls to different views of a single underlying object collection, possibly providing separate filtering and sorting for each control.
0
kicks
XML Data Binding using Data Templates
This tutorial describes how to bind XML data using a data template in XAML. For ease of demonstration, the XML is defined as a resource in the XAML document.
0
kicks
Strongly Typed Table Adapters: autogenerating CRUD statements
A tip about forcing Visual Studio DataSet designer to generate crud statements even when joining tables.
0
kicks
Using Bind with nested properties
Description of method that allows two way databinding to a nested property.
0
kicks
The Dark Side Of Declaritive DataBinding
The first article in a series that will discuss the pitfalls of the traditional declaritive databinding approaches that are touted at many demos/presentations etc. Over the course of the series, techniques and practices will be introduced to allow for more confidence and robustness in your databindi...