March 6, 2008 2:45 PM
Posted by: MarkWPF
Databinding,
WPF,
XAMLIn a previous post, I described how you can get a binding to update in real time - i.e. as you type.
Sometimes however, you want to control the updating more closely, i.e. in code. For example, you may want to do the update only when a timer has ticked.
There is a little used argument for...
February 24, 2008 10:11 PM
Posted by: MarkWPF
C,
Databinding,
SQL,
WPFHow do you databind to an EntitySet retreived from a Linq query, via Linq to Sql or Linq to Entities for example?
Well it is very easy to actually bind to it, you simply connect it up using normal Xaml syntax. But what if you want to have updates automatically relected in the UI? That's...
February 17, 2008 10:54 AM
Posted by: MarkWPF
C,
Databinding,
WPFI've come across this strange little quoible.
It's possibly just just the way I've been trying to use it, but it still seems odd to me
If you have a ComboBox which you are databinding to using an object, like:
<ComboBox SelectedItem="{Binding Path=Market}" />
Where Market is a...
November 12, 2007 3:05 PM
Posted by: MarkWPF
C,
Databinding,
WPFHow did that happen?
I personally think it happened because when we were all looking at WPF to begin with (in CTP days), it was very obvious that there was no Grid.
Then, because of that people noticed that the ListView control had the option to specify a grid version as one of it's views. That...
October 4, 2007 1:11 PM
Posted by: MarkWPF
Databinding,
WPFChange notification in WPF is the mechanism by which you proprogate changes to your objects to whomever is listening for those changes.
One typical usage is in a data binding scenario, where the recipient is listening for changes to the objects being bound to in order to update the user...