What exactly is WPF?

后端 未结 8 1085
我寻月下人不归
我寻月下人不归 2021-02-04 04:51

I have seen lots of questions recently about WPF...

  • What is it?
  • What does it stand for?
  • How can I begin programming WPF?
8条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-04 05:46

    Is the new Windows Gui system. I don't believe its aim is to make development easier per se but more to address fundamental issues with WinForm, such as transparency and scaling, neither of which WinForm can effectively address. Furthermore it seeks to address the "one resolution only" paradigm of WinForm by mapping sizes to real-pixel sizes and making flow layout easier and more fundamental.

    It's also based on an XML derivative making it easier to change the UI and forcing a separation of the UI and the core code (although technically you can still badly hack it together in this manner).

    This separation also drives a desire to be able to divide the work into two camps, the designers taking charge of the XAML and layout and the programmers taking care of developing the objects used in the XAML.

提交回复
热议问题