What exactly is WPF?

后端 未结 8 1066
我寻月下人不归
我寻月下人不归 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:35

    WPF is the next frontier with Windows UIs.

    • Built on top of DirectX, it opens up hardware acceleration support for your .Net 3.0+ user-interfaces.
    • Emphasis on Vector Graphics - UIs scale and render better
    • Composable UIs. You could nest animated buttons in combo boxes.. the world's your oyster.
    • Is a rewrite with only minimal core components written in unmanaged code VS GDI-User Dll based Winforms approach which is a thin managed layer over largely unmanaged code.
    • Declarative approach to UI programming, User Interfaces are largely specified in a XML variant called XAML (eXtensible Application markup language) pronounced Zammel. This opens up WPF to designer folks who can specialized tools to craft UIs that the developers can then code up. No translation losses between wireframes to final product.
    • MS 'allegedly' will not provide any future updates to Winforms. Heavily invested in WPF as the way forward
    • Oh yeah, before I forget. Works best on Vista :)

    You can get either Adam Nathan's WPF Unleashed Book or Chris Sells Programming WPF .. those seem to be the way to go. I just read the first chapter of Adam's (Lead for WPF at MS) book. Hence the WPF praise fountains :)

    0 讨论(0)
  • 2021-02-04 05:36

    WPF is part of the .net 3.0 stack. Its microsoft's next generation Graphical User Interface system. All the information you need can be found on wikipedia and msdn's wpf site

    To Get Started programming I guess check out the essential downloads on windows client

    0 讨论(0)
  • 2021-02-04 05:37

    Take a look here http://windowsclient.net/ and here Windows Presentation Foundation (WPF)

    Basically WPF is created to make windows form easier to design because of the use of XAML, designers can work on the design and programmers on the underlying code

    0 讨论(0)
  • 2021-02-04 05:37

    Windows Presentation Foundation. It's basically Microsoft's latest attempt to make development easier, and provide a whole heap of nice functionality out of the box. I'm not sure where to start, but googling "WPF 101" should throw up a few useful links.

    0 讨论(0)
  • 2021-02-04 05:43

    WPF is the Windows Presentation Foundation. It is Microsoft's newest API for building applications with User Interfaces (UIs), working for both standalone and web-based applications.

    Unsurprisingly, there is a very detailed but not all that helpful Windows Presentation Foundation page at Wikipedia.

    The WPF Getting Started Page at the Microsoft MSDN site is probably a better place to start.

    0 讨论(0)
  • 2021-02-04 05:45

    Check out Eric Sink's Twelve days of WPF 3D.

    0 讨论(0)
提交回复
热议问题