Hi I use wpf and mvvm so the binding to my viewmodel is ok! I have a class Question which has the property IEnumerable<Variation> Variations
I have to bind my GUI to the interface: public interface IMain { public CTopObject MyObject { get; } public CInsideObject MidObj { get; }
I have wpf data trigger as below. <DataTrigger Value=\"0\" Binding=\"{Binding Path=TestDirection,Mode=OneWay}\">
Probably a simple question but one that eludes me nonetheless. I have a class: public class Person { public string Name{ get; set; }
Is it possible to attach datatriggers to a style at runtime?I\'ve been through my (non-working) code a few timesnow and can\'t seem to find where I\'ve gone wrong.
I have a combobox of customer and that customer can be in more than 1 categories so i used a listbox which contains check-boxes of all the categories...
What I want to do is bind the text of a TextBlock to my custom ButtonSymbol property of the UserControl.
Hi i am trying to find the best way to manage the Data (that comes from tables in a Database) in your App.
I\'ve got a user control where the DataSource is an ObservableCollection<string>. If I set the DataSource of an instance of my user control via code it works
Hi i am trying to use the NotifyPropertyChanged to update all the places where i am binding a property. For what i have searched the INotifyPropertyChanged is indicated to this cases.