How to see design-time data-binding in XAML editor (it works in runtime)?

后端 未结 2 1817
悲哀的现实
悲哀的现实 2020-12-03 04:56

I data-binded version number to appear as follows:

 DataContext=\"{Binding RelativeSource={RelativeSource Self}}\">
    

        
2条回答
  •  伪装坚强ぢ
    2020-12-03 05:21

    Make sure that you have these definitions at the root tag of your xaml file (in your case the Window tag):

    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    mc:Ignorable="d"
    

    Then, anywhere in the xaml (including the root tag) you can add this:

    d:DataContext="{d:DesignInstance myNamespace:MyViewModel, IsDesignTimeCreatable=True}"
    

    Now you just need to make sure that you initialize the values in a constructor or have default values for properties.

    If you need to run a special logic for design mode, look at this answer.

提交回复
热议问题