How can I do data binding in code with C#?

后端 未结 2 621
日久生厌
日久生厌 2021-02-06 07:46

I intend to use data binding between a few of my classes. In other words, I am not binding values between a model class and the UI, but to bind variables between different class

2条回答
  •  Happy的楠姐
    2021-02-06 08:10

    I believe I only have access to the the vanilla .Net framework

    The reality is that data binding is used in UI. So, if anybody talks about data binding, then he automatically implies "data binding in [UI Framework name]".

    You may consider object-to-object mapping instead of data binding.

提交回复
热议问题