Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Lester's WPF\SL Blog
Simple, Easy & Beautiful
Translate this page
Powered by
Microsoft® Translator
Common Tasks
Blog Home
Email Blog Author
RSS for posts
Atom
OK
Recent Posts
GPU based effects
Posted
over 5 years ago
by
LesterLobo - MSFT
2
Comments
SourceAnalysis: Tool to enforce coding style
Posted
over 5 years ago
by
LesterLobo - MSFT
1
Comments
Join the WPF Test team
Posted
over 5 years ago
by
LesterLobo - MSFT
1
Comments
WPF 3.5 SP1 feature: StringFormat
Posted
over 5 years ago
by
LesterLobo - MSFT
20
Comments
.NET 3.5 SP1 - Try it out today
Posted
over 5 years ago
by
LesterLobo - MSFT
3
Comments
Blog - News
Content is provided "AS IS" with no warranties and confers no rights.
Tag Cloud
.NET 3.0
.net 3.5
.NET 4
Avalon
Datagrid
Microsoft
MultiTouch
MVVM
New WPF 4 features
Pages
Programming
Ribbon
Silverlight
TestAPI
Vista
VS 2010
Windows Presentation Foundation
WPF
WPF Ribbon
WPF samples
WPF tools
WPF/E
Xaml
XAML 2009 features
Xaml Toolkit
Hot Links
Adding speller in custom context menu
Getting screen relative Position
Scrolling Scrollviewer on mouseDrag at the boundaries
Alternative XamlWriter for better performance
Flickr photo gadget
Vista look to your apps
Maximizing window considering Taskbar
WPF Vista gadgets
Split Button
Math operations in XAML
Mapping mouse click on a 3D model
BitmapSource-Bitmap interop
Listening to DependencyProperty changes
WPF/E 3D(like) photo app
Changing caret color
Localizing WPF apps
Printing RichTextBox content
Xbaps - Learn the basics
Xaml FlowDoc to XPS
Xaml FlowDoc to XPS
Vista style Open/Save FileDialogs
Xaml shield
WPF Blog Writer
Filtering text with IME
Enabled hyperlinks in RichTextBox
3.5 features: Addins
Using Viewport2DVisual3D
ABCs of Threat modeling
Using HeirarchicalDataTemplates
Weather Reader user control
.NET 3.5 Namespaces poster
Xbaps using Cookies
Mindmapping Tool
Drag Drop Library
12 tips/tricks about Vista
Blogs (Other)
Tim Sneath
Rob Relyea
Charles Petzold
WPF SDK
Michael Shim
Blog - Monthly Archive List
Archives
March 2011
(1)
December 2010
(1)
October 2010
(1)
September 2010
(2)
August 2010
(6)
July 2010
(4)
June 2010
(3)
May 2010
(2)
April 2010
(2)
March 2010
(2)
February 2010
(1)
January 2010
(1)
December 2009
(5)
November 2009
(19)
October 2009
(12)
September 2009
(3)
July 2009
(2)
June 2009
(3)
May 2009
(3)
April 2009
(3)
March 2009
(3)
February 2009
(2)
January 2009
(1)
December 2008
(3)
November 2008
(2)
October 2008
(4)
September 2008
(3)
August 2008
(4)
July 2008
(2)
June 2008
(3)
May 2008
(5)
April 2008
(2)
March 2008
(3)
February 2008
(4)
January 2008
(5)
December 2007
(3)
November 2007
(3)
October 2007
(5)
September 2007
(2)
August 2007
(6)
July 2007
(4)
June 2007
(5)
May 2007
(5)
April 2007
(5)
March 2007
(7)
February 2007
(6)
January 2007
(7)
December 2006
(7)
November 2006
(5)
October 2006
(8)
September 2006
(2)
August 2006
(3)
July 2006
(6)
June 2006
(4)
May 2006
(4)
April 2006
(2)
March 2006
(4)
February 2006
(4)
January 2006
(4)
December 2005
(3)
November 2005
(4)
October 2005
(6)
September 2005
(3)
August 2005
(1)
TestAPI
CoreMVVM
XamlPadX
Xaml Compliance
May, 2008
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Lester's WPF\Silverlight Blog
GPU based effects
Posted
over 5 years ago
by
LesterLobo - MSFT
2
Comments
A hot new feature in 3.5 SP1 is GPU based effect. Greg Schechter has has a series of posts on this topic. Its well worth the read. So head over :) GPU-accelerated custom Effects for WPF Using Effects in WPF (Part 2) More details on how Effects work Writing custom GPU-based Effects for WPF A simple Effect sample project and ClickOnce application Writing custom Effects - adding parameters to Effects Video: wpf graphics Share this post
Lester's WPF\Silverlight Blog
SourceAnalysis: Tool to enforce coding style
Posted
over 5 years ago
by
LesterLobo - MSFT
1
Comments
People just love to write code. One tool that is used inside Microsoft is StyleCop which enforces code style guidelines on the code we write. Its always been a ask from customers to get this out and guess what its out!! http://code.msdn.microsoft.com/sourceanalysis The tool on installation integrates with the VS IDE so the usage is very simple. The rules can be tweaked so that you dont have to follow everything. "Specifically, these rules cover the following, in no particular order: Layout of elements, statements, expressions, and query clauses Placement of curly brackets, parenthesis, square brackets, etc Spacing around keywords and operator symbols Line spacing Placement of method parameters within method declarations...
Lester's WPF\Silverlight Blog
Join the WPF Test team
Posted
over 5 years ago
by
LesterLobo - MSFT
1
Comments
The WPF test team is hiring. We have the following openings · Software Development Engineer in Test (see official job posting ) · Software Test Architect (see official job posting ) For more details check out Ivo’s blog post Need some more convincing ... Check the video below :) Video: Why Microsoft Share this post
Lester's WPF\Silverlight Blog
WPF 3.5 SP1 feature: StringFormat
Posted
over 5 years ago
by
LesterLobo - MSFT
20
Comments
One of the new features in 3.5 SP1 is stringformat. The usage is pretty simple. So following are simple snippets showing its use < TextBox Text = " {Binding Path=Double, StringFormat=F3 } " /> < TextBox Text = " {Binding Path=Double, StringFormat=Amount: {0:C}} " /> < TextBox Text = " {Binding Path=Double, StringFormat=Amount: \{0:C\}} " /> < TextBox > < TextBox.Text > < Binding Path = " Double " StringFormat = " {}{0:C} " /> </ TextBox.Text > </ TextBox > < TextBox > < TextBox.Text > < MultiBinding StringFormat = " {}{0:F2} = {1:D} " > < Binding Path = " Double " /> < Binding Path = " Date " /> </ MultiBinding >...
Lester's WPF\Silverlight Blog
.NET 3.5 SP1 - Try it out today
Posted
over 5 years ago
by
LesterLobo - MSFT
3
Comments
Have you tried out .NET 3.5 SP1... If not, try it now. Its got loads of new features for WPF. In fact rather than a service pack, its more of a new release .. So whats new.. improved deployment, new controls (supports creation of datagrid), improved performance, DirectX integration, HLSL shaders, and many new features. For the complete details, take a look at Tims post Links to the executables: Visual Studio 2008 Service Pack 1 (Beta) .NET Framework 3.5 Service Pack 1 (Beta) Visual Studio 2008 Express Editions SP1 (Beta) Visual Studio 2008 Team Foundation Server 2008 SP1 (Beta)
Page 1 of 1 (5 items)