WPF documentation with pure C # code

3

WPF is the "new" one for development, not only desktop but also mobile. However, almost all of the material that is available on WPF is fully tied to the use of IDE and XAML.

But XAML is an intermediate language, it is compiled into C # code, which is then compiled into the final executable. Therefore, it is possible to delete XAML and encode directly in C #.

I understand that this is impractical from the point of view of productivity, but I believe it is important to also know the API.

Question:

Where can I find documentation about the WPF class library? I know it's probably in the MSDN domain, but honestly I have a tremendous difficulty finding something there. I find the website unfriendly.

[off] This is something that MS should learn from open source communities, compiling documentation.

    
asked by anonymous 22.09.2016 / 17:13

1 answer

2

The documentation is MSDN, specifically namespace Windows . The starting point for the documentation is FCL .

WPF is 10 years old and is only used for desktop.

Microsoft seems to be willing to use Stack Overflow Documentation to document its products.

    
22.09.2016 / 17:44