Matthias Shapiro

WPF Books

I apologize for my absence. Between the Christmas holiday and the wedding planning, I’ve been remiss on continuing work on this blog. In fact, it was only today that I noticed I had new comments.  I’ll be getting to the questions in the comments in the coming week, but for right now, I want to…

Read More

MarkupExtension

Over at nostatic.com, there is an example of <a href=”http://notstatic.com/archives/118″>using MarkupExtension</a> that that we can access some custom code functionality directly from the XAML.  In his example, the following XAML accesses a random number generator within the code. <Button> <Button.RenderTransform>   <RotateTransform Angle=”{l:RandomNumber Min=0, Max=360}” />   </Button.RenderTransform> </Button> Pretty cool. Apparently it only works…

Read More

ListView FAQ

Please feel free to post additional questions in the comments section. I’ll get to them as I can and then link the help here. How do I get grid lines to show up in the ListView?  How do I style a specific column in a ListView? How do I make it so that, instead of…

Read More