using attached events with caliburn micro Message.Attach

finally I understand the problem and the solution. The problem is that system.windows.interactiviy.EventTrigger doesn’t support attached events. Caliburn micro uses it for actions thus my attached event didn’t work. The solution was to write a customized event trigger and use caliburn micro action in a explicit manner. the customized event trigger was taken from that … Read more

caliburn.micro serialization issue when implementing PropertyChangedBase

You need to add the [DataContract] attribute to your Person class and the [DataMember] attribute to every property and field you wish to serialize: [DataContract] public class Person : PropertyChangedBase { [DataMember] public int Id { get; set; } private string _firstName; [DataMember] public string FirstName { get; set; } } You need to do … Read more