Currently studying Catel.
In the PersonApplication of the Catel.Examples - specifically, the PersonWindow.xaml: the design time data is not being shown within the Visual Studio Designer.
In the code of the PersonViewModel, the public properties are commented out. Apparently this is because the code is using Fody to create the Model properties at runtime. So, I uncommented the public properties assuming that the Visual Studio Designer requires Public Properties to show designtime data in the Designer. Still, the designtime data of the DesignPersonViewModel does not show in the designer.
The application runs correctly at runtime. There are no messages on Building to indicate an issue within the XAML or the code. The XAML code declaring the designtime datacontext is correct:
d:DataContext="{d:DesignInstance ViewModels:DesignPersonViewModel,
IsDesignTimeCreatable=True}"
Any explanation for why the designtime data does not show in the Designer?
I am using Visual Studio 2015.