Browse by Tags
All Tags »
WPF (
RSS)
So what does InvalidateVisual do? The SDK documentation says it " invalidates the rendering of the element, and forces a complete new layout pass. OnRender is called after the layout cycle is completed" . Just what I needed when it was time to implement...
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"...
The ListCollectionView is a WPF wrapper for an IList. When you add or remove something from the IList, the ListCollectionView must be notified of the change by calling its OnCollectionChanged method so it can sync with the IList. The problem is, OnCollectionChanged...
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...
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...
[ Edited : I changed the code to use one template this time to emphasize the proper use of styling. I also moved the the definition for the style to a class to make the code cleaner. ] After only a couple of days hacking away at WPF using the SDK docs...
Learning the ins and outs of WPF is like climbing Mount Apo for the first time - minus a guide. Oh yes, judging by the sample applications you see on the Internet, Microsoft may have succeeded in creating a very compelling framework that will change the...
i read that phrase in an XML book i bought five long years ago. it was an amazing declaration that stuck in my head thru all these years. frankly, i never thought it would happen. but no sooner did i put down that bloody book, MSDN was showcasing code...