Changes in x:Array in WPF 4.0
<x:Array x:Key="WidgetList" Type="{x:Type local:Widget}" ... />Then be aware that the result is a Widget[], not an ArrayExtension object.
<x:Array x:Key="WidgetList" Type="{x:Type local:Widget}" ... />Then be aware that the result is a Widget[], not an ArrayExtension object.
<ListBox ItemsSource="{Binding Source={StaticResource WidgetList}, Path=Items}" ... />
<ListBox ItemsSource="{Binding Source={StaticResource WidgetList}}" ... />
I've been doing a fair bit of WPF coding recently, and it's a compelling experience. The thing is, it isn't easy, and I think that surprises some people. Part of the reason for this is that the documentation still feels incomplete, in that undocumented kind of way. But the other reason is that it forces you to think very abstractly, all the time. If I were to think of a decent analogy, it would be one involving cooking: Coding in most UI toolkits is like cooking with lots of pre-made dishes (pre-cooked noodles, microwave dinners, pasta sauces out of the bottle.) Sure, you can make a decent meal, but the results are pretty predictable and maybe not that satisfying. Coding in WPF is like cooking with real ingredients - it can be challenging, and you can certainly mess up the results, but you can also whip up something fantastic.
combobox.Items.SortDescriptions.Add( new SortDescriptions("Content", ListSortDirection.Ascending));
combobox.Items.SortDescriptions.Add( new SortDescriptions("", ListSortDirection.Ascending));
I was reading an interview with JJ Abrams on aintitcool.com and had my mind blown. I knew the guy who played Bones in the fantastic new Star Trek film looked familiar, but I hadn't bothered to look him up.
What's the opposite of a Karma Slap? Good things happen to people who tip well. I took a cab today to pick up my car and left the cabby a $4 tip for a $19 ride, for no particular reason. I'd consider that a decent tip. As I was waiting for my car, the cabbie came back and dropped off a small brown bag I'd forgotten in the backseat. The weird thing is I thought I had checked that I had everything because I was also carrying my camera case and a chequebook. The package (which didn't look like much more than a work snack, honestly) actually contained some naturopathy pills, which I had just paid $50 for. So there you go.
© Blogger templates The Professional Template by Ourblogtemplates.com 2008
Back to TOP