How to change view in WPF?

后端 未结 2 666
青春惊慌失措
青春惊慌失措 2021-01-13 16:10

Have some free time and wanted to try making a game in WPF. I was wondering, what is the best way of changing the view of a window? I have made a \"main menu\" window, with

2条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-13 16:46

    It is appropriate to use DataTemplates if you want to dynamically switch Views depending on the ViewModel:

    
       
          
             
          
          
             
          
       
      
    
    

    If Window.DataContext is an instance of ViewModelA, then ViewA will be displayed and

    Window.DataContext is an instance of ViewModelB, then ViewB will be displayed.

    The best example I've ever seen and read it is made by Rachel Lim. See the example.

提交回复
热议问题