WPF XAML designer showing bound property names instead of property values

后端 未结 4 1493
我寻月下人不归
我寻月下人不归 2021-01-06 06:31

One of my XAML files shows a strange behaviour in the XAML designer (but not during runtime):

public class MyDesignTimeViewModel
{

    public MyDesignTimeVi         


        
4条回答
  •  我在风中等你
    2021-01-06 07:35

    Thankyou for the last two answers. In my case 'Enable Project Code in XAML' has randomly turned off as well! I didnt have the designer pulling the view model code for a few weeks. So very happy this has been fixed. So in all to get this working you need:

    d:DataContext="{d:DesignInstance vm:MyDesignTimeViewModel}"

    and the little icon with a blue square and caption 'Enable Project Code in XAML' to be turned on!

提交回复
热议问题