I have a class library with a base class (BaseViewModel) that implements INotifyPropertyChanged, and a class that derive from it (TestExternal).
I use Fody v4.2.1 and PropertyChanged.Fody v2.6.1.
In the WPF app, I use that class as DataContext. When…
I have class which are inherit base class which have it own "OnPropertyChanged" event called, eg: Xamarin BindableObject like below
public string Name {
get { return (string)GetValue(NameProperty); }
set { SetValue(NameProperty, value); }
}
is…
I have a ConfigurationViewModel which inherits from BaseViewModel. BaseViewModel is placed in a separate project and has an INotifyPropertyChanged interface implemented. This separate project does not have Fody.PropertyChanged installed.
When I try…
I am using Realm and PropertyChanged Fody in my Xamarin Forms project. I have two models - Person and Friend which are like below. The person object has a reference to the friend object. I have binded the Age of the person and the friend to two…
I have two distinct solution using PropertyChanged.Fody. There were both on version 1. Then I upgraded one solution to version 2. Since, the solution on version 1 shows error like that:
Error Fody: Could not load 'ModuleWeaver' from…
Are there any limitation on using Prism and Fody.PropertyChanged?
I'm trying to use Fody to implement the OnPropertyChange for the variables at my ViewModel, but it isn't working. The property change isn't firing.
I tried to remove the BindableBase…
Is there any way to make https://github.com/Fody/PropertyChanged convert a List into ObservableCollection? The core contracts expose things as List and we already use Fody to inject PropertyChange.
I am working on an Entity Framework / WPF project which has hundreds of tables in the database. Many of the tables include a field named IsChanged. I am using a model base class and PropertyChanged.Fody to handle the injection of…
I have a Control which inherits from NumericUpDown in WinForms.
I want to handle changes to the DecimalPlaces-Property of NumericUpDown, therefore I have both tried declaring a
void OnDecimalPlacesChanged()
{
MessageBox.Show("Moeeep");
}
and…
I have a winforms app with a group of text boxes for an entity, let's call the entity Product
One of my textboxes is hidden because it holds a foreign key to another database object Business Unit. I populate the hidden textbox using a combobox that…
I need to identify if a list is updated (item added/removed). I need to use System.Collections.Generic.List, I cannot use ObservableCollection for this (and subscribe to it's CollectionChanged event).
Here is what I have tried so far:
I am using…
I have the following classes using Fody.PropertyChanged weaving:
[ImplementPropertyChanged]
public class OtherClass : INotifyPropertyChanged
{
#pragma warning disable 67
public event PropertyChangedEventHandler PropertyChanged;
#pragma…
I've got a Windows Phone 8 application using Fody to inject INotifyPropertyChanged into properties.
I have Class First with property A which is binded to textbox in View:
[ImplementPropertyChanged]
public class First
{
public int A { get; set;…
I have a ProjectModel and a ProjectViewModel class; my Model handles direct manipulation of a project, while the view model is providing the "view friendly" properties and commands
However, in my ViewModel I'm exposing the read-only project contract…