What is the connection between .xaml and .xaml.cs files

后端 未结 3 1904
醉酒成梦
醉酒成梦 2021-01-23 12:41

For a view, there are corresponding .xaml and a .xaml.cs files. How are these files related?

I\'m super new to xaml - I think I see dynamic placeholders in the .xaml fil

3条回答
  •  囚心锁ツ
    2021-01-23 13:28

    .xaml is the designer file and .xaml.cs is the code-behind file where you write the business logic instead of inline code in .xaml. This provides more flexiblity of code separation and code readability.

提交回复
热议问题