Browse by Tags
All Tags »
XAML (
RSS)
After reading this post by Karsten, I created a WPF XBAP project that displays the ClassicReports designer on a Frame as shown below. < Page x:Class ="IApp.Page3" xmlns ="http://schemas.microsoft.com/winfx/2006/xaml/presentation"...
About two nights ago, I learned how to use an external XAML in a WPF application. It was so simple. Just read the XAML, parse it, and then wire the elements to your code. Now if this is how we are supposed to code in WPF, then I might just as well stick...
My first impression with XAML was that you get to play with it only if your building WPF apps in c#. It seems the .NET3 c# compiler is the only one capable of compiling XAML markup and code into an executable file. It was a big letdown for Boo aficionados...
Well what can i say except, my apologies to the XAML team. I was reviewing the XAML code from my last post and there you go, I forgot to set the HorizontalAlignment to Center which was present on the Boo code. After inserting the appropriate setter the...
I was reading with great interest Keith's posts about creating a color chart in ASP.NET and decided to roll out a similar WPF application in pure code first - in Boo ofcourse - and in XAML second. The former will be a Windows application and the latter...