What bit of WPF did you
- find hardest to understand
- or misunderstood for longest
and how did you understand it in the end (please provide links etc).
(I am asking this to guide my learning of WPF)
|
12
|
What bit of WPF did you
and how did you understand it in the end (please provide links etc). (I am asking this to guide my learning of WPF) |
|||
|
|
|
|
Sorry this got so long ... hopefully it is helpful! One thing I would mention is that these are the concepts/things that tripped me up, I'm not sure if I would use it as an itemized list of what to study if you are just starting out. I would dive in on some books, read through a lot of blogs (Josh Smith, Dr. WPF), and just in general, dive in and try things out in little projects. Core Concepts
Graphical Concepts (links: 1)
WPF Patterns
WPF != Windows Forms I know someone already mentioned this but I want to agree emphatically. There are so many new and different concepts, you really do have to unlearn quite a few things and approach solving problems from a completely different angle. As an example, Windows Forms is an immediate mode drawing subsystem while WPF is a retained mode one (above). The Many, Many Ways To Do Things in WPF This is a funny thing to bring up, but because there is so many ways to do something in WPF, it is almost paralyzing. Which way is the right way to do things? Is it this? Is it that? I have had to get over a fear of doing it the wrong way, to just jump in, and learn from my mistakes. |
|||
|
|
|
Let's take it from beginners view. I'm using simple editor like KaXML or Sharpdevelop for WPF development. and i find that i can't proceed with database development without Database grid component. So it is not like Windows forms. Start searching for commercial database grid component. and in defense people will say it is not hardest thing or limitation. You've to work with C# files or other language files supported by .NET framework for serious application development. If that is not makes it problematic so, why do i need to use it at first place. I'm happy with C# why do i need to use WPF ? Hardest things so far : 1) Data binding 2) Dependency on another language(C# for example) 3) Graphics capability |
|||
|
|
|
|
Reading through books and understanding the stuff is one thing and applying them in your project is another. I was creating a relatively simple Contact List control just like in outlook and came across many small but noticeable learning curves. 1 - First Templating seems simple as you are reading but it get trickier when you play with it. Just setting the background color of a user control when a text box gets focus was challenging. It turend out that I had to use DataTrigger (who would have thought). 2 - Using a wrapper as an Itemspanel for List box all of a sudden bacame a challenge as it was not arranging the items (you have to play with it). 3 - Definitely RelativeSource in Binding. Basically being able to bind controls in your template (from parent to child and vise versa) is a good learning curve. My advice. Write a small app and you'll see thing coming together. |
|||
|
|
|
|
I still cannot specify target property in animation without cheat-sheet:
|
||||||
|
|
|
I'd say the hardest points when I started learning WPF were :
There are many little things that can seem difficult at first if you have experience with Windows Forms. You need to unlearn a lot of things, and switch to a very different mental model of the UI structure. At first I started to code as I did in Windows Forms, with lots of code-behind, but that was definitely not the right way. The MVVM pattern really helped me to get into the WPF "philosophy"... My main source of documentation for learning WPF was of course MSDN, where you can find most answers if you know how to look. I also learned a lot of things on the following blogs : |
||||
|
|
|
Data Templating (and Control Templating for that matter). On the surface, it's reasonably straightforward, but once you start trying to setup binding between different XAML files, it can become seriously confusing. I suppose that I finally managed to get a decent grasp through it by going through a lot of MSDN docs, but moreover, trial and error. Playing around with things is usually the best way to learn any technology. |
||||
|
|
|
WPF is not WinForms. Most, if not all, of the common strategies you use to accomplish tasks in WinForms are the wrong (or least efficient) way in WPF. Commands, Dependency Properties, Binding, Templating, etc, all will be less useful if you adopt a WinForms mindset. Currently we're in the development of a large visualization application. As seasoned WinForms programmers, our first cut at the display of multidimensional data precomputed thousands of visual elements. A slider would traverse the dimensions of the visual elements using a callback. No data would be loaded beyond the initial setup. This had very poor performance. Switching to thousands of bindings with data converters, on only a few hundred visual elements, with the data being loaded and recomputed on the fly. This resulted in an order of magnitude improvement of performance. It was almost inconceivable that thousands of bindings would be faster than thousands of precomputed visual elements, but such is the case in WPF. |
|||
|
|
|
The differences in Binding syntax was one; i.e. when to use Binding and when to use StaticResource/DynamicResource. When I was first learning WPF, I kept getting the two mixed up. The different forms of DP and attached properties were also hard to understand at first. |
|||
|
|
|
|
Dependency Properties took a while. Here's a nice article, and another that helped me. The second article contained the following paragraph that really clarified a few questions I had.
More generally, I have also found that prior experience with web development (browser UI in particular) to be very useful in "getting" WPF. It is more about the mindset it allows you to bring to WPF, compared with someone who has only ever worked with Windows Forms or other rich client applications. Some more obvious parallels from the web world are CSS, flowing layouts, jQuery animation, event bubbling/routing and just being comfortable with the extensive browser and DHTML object models. |
|||
|