One of my XAML files shows a strange behaviour in the XAML designer (but not during runtime):
public class MyDesignTimeViewModel { public MyDesignTimeVi
Turns out the missing thing was the IsDesignTimeCreatable attribute:
IsDesignTimeCreatable
d:DataContext="{d:DesignInstance vm:MyDesignTimeViewModel, IsDesignTimeCreatable=true}"
With that attribute, everything works as expected.