UI
WPF, Silverlight, Windows Forms
|
|
|
Scott Hanselman is looking for WPF TextBlock with stroke text.
With WPF this is a really easy and flexible task to do. What needs to be done is to set the Decorations of the TextBlock:
<TextBlock FontSize="18">
<TextBlock.TextDecorations> Read More
|
|
|
|
Writing WPF applications I prefer using the XAML editor instead of the designer. With the help of Visual Studio 2008 intellisense this can be done really quick!
Now intellisense for XAML was broken - the solution posted by Brett Kilty (a missing path Read More
|
|
|
|
If the main Window of an WPF application should automatically be sized to its content, setting the Width and Height properties to Auto does not help. With this setting the Window gets a default height and width. To resize the main window to its content, Read More
|
|
|
|
From time to time I'm asked if there's a SWF to XAML conversion tool.
From Tim Sneath's blog: The Converted.
It convert's Flash animations to the XAML format.
Christian Read More
|
|
|
|
Yesterday evening I arrived in Los Angeles (some hourse later than expected because of a cancelled flight). Sunday morning I checked in at PDC. In the bag there's an interesting poster about the major namespaces of WinFX.
Here I'm skipping Read More
|
|
|
|
News on Microsoft PressPass: 2006 is the target date for Longhorn. The real good news in this announcement is that Avalon will be available for Windows XP! Now Avalon development can start earlier :-) The new filesystem (WinFS) will be ready when Read More
|
|
|
|
Today I had a discussion about hosting .NET components in IE from the local file system.
Referencing .NET assemblies that are downloaded from the web server can be done easily using the <OBJECT> tag.
However, using assemblies from the file Read More
|