Wednesday, January 23, 2008

Daily Links 23/01/2008

Free Professional Diff Tool from SourceGear

Attach to Asp.NET process with keyboard shortcut (custom VS macro)

ASP.NET web service tips - documentation
How to add custom help pages to your web services

.NET Framework Library Source Code now available

Debug into .NET framework source code :)

Visual Studio 2008 Multi-threaded debugging feature
Keep track of which thread is running what code in the IDE - neat

Rhino Mocks Hello World
very simple quick-start for using Rhino Mocks (framework for loading mock business objects into your unit tests)

Subsonic and MVC: Introducing Makai

Best C# web sites

WCF Communication Options in the .NET Framework 3.5

I recently struggled a bit with getting my silverlight application to resize with the
browser using the following hook in C# code:
BrowserHost.Resize += new EventHandler(BrowserHost_Resize);
(placed in the Page_Loaded event handler of the main page.xaml)
The event just wouldn't fire when the browser resized :|
...until I discovered that you need to change the auto-generated
TestPage.html properties to the following: (specify percentages instead of pixel size)

.silverlightHost { width: 100%; height: 100%; }

No comments: