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
3.5 features: Viewport2DVisual3D
Posted
over 6 years ago
by
LesterLobo - MSFT
9
Comments
Live search in a Silverlight avatar
Posted
over 6 years ago
by
LesterLobo - MSFT
1
Comments
3.5 features: Addins
Posted
over 6 years ago
by
LesterLobo - MSFT
3
Comments
3.5 Features: Enabled hyperlinks in RichTextBox
Posted
over 6 years ago
by
LesterLobo - MSFT
3
Comments
3.5 features: Filtering text with IME languages
Posted
over 6 years ago
by
LesterLobo - MSFT
0
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
August, 2007
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Lester's WPF\Silverlight Blog
3.5 features: Viewport2DVisual3D
Posted
over 6 years ago
by
LesterLobo - MSFT
9
Comments
Viewport2DVisual3D .... this new feature makes things a lot easier in the 3D world.. What this enables is putting interactive 2D on 3D. This makes things like having a textbox in 3D a breeze... < Viewport2DVisual3D x:Name = " vp2d_multiple_children " Geometry = " {StaticResource mesh} " > < Viewport2DVisual3D.Material > < DiffuseMaterial Viewport2DVisual3D.IsVisualHostMaterial = " True " Brush = " White " /> </ Viewport2DVisual3D.Material > <TextBox /> </ Viewport2DVisual3D > One other thing is mapping 3D points to 2D is so much more easier... Earlier on I had a post on mapping a mouseclick on a 3d model to a 2d coordinate. This involved using some barycentric coordinates and such....
Lester's WPF\Silverlight Blog
Live search in a Silverlight avatar
Posted
over 6 years ago
by
LesterLobo - MSFT
1
Comments
Try out tafiti.com ... Not heard of it... its a new search site from Microsoft which provides Live search results in a Silverlight interface... The site is in beta but it shows the power of Silverlight.. You would need to install the Release candidate of silverlight to get it running... Check it out Share this post
Lester's WPF\Silverlight Blog
3.5 features: Addins
Posted
over 6 years ago
by
LesterLobo - MSFT
3
Comments
In 3.0, we received a number of queries regarding creating plugins. So in 3.5 we got this in .. :) .. Creating an adding would bsically need the use of 3 dlls - System.Addin, System.Addin.Contract, System.Presentation The basic steps to create the addins involves creating a contract, then create the corresponding views and adapsters for both the host and the addin. So in total you will be creating 5 dlls in addition to the app and the actual addin. Even though this looks a bit overwhelming, its pretty simple. http://blogs.msdn.com/clraddins/ gives more information about creating addins. In order to try out this framework, I added the addin support to blogpad with the host being able to set text in the addins... So the app basically...
Lester's WPF\Silverlight Blog
3.5 Features: Enabled hyperlinks in RichTextBox
Posted
over 6 years ago
by
LesterLobo - MSFT
3
Comments
hmmm... that was one often requested feature. So to enable hyperlinks in RichTextBox all that is needed is to set the property IsDocumentEnabled on the RichTextBox. Type the following in XamlPadX and you have the hyperlink navigation working. < RichTextBox IsDocumentEnabled = " True " xmlns = ' http://schemas.microsoft.com/winfx/2006/xaml/presentation ' xmlns:x = ' http://schemas.microsoft.com/winfx/2006/xaml ' > < FlowDocument > < Paragraph > < Hyperlink NavigateUri = " http://club.live.com " > Live Games </ Hyperlink > </ Paragraph > </ FlowDocument > </ RichTextBox > A couple of things to notice here: 1> The Navigation is possible only on a Ctrl Click operation...
Lester's WPF\Silverlight Blog
3.5 features: Filtering text with IME languages
Posted
over 6 years ago
by
LesterLobo - MSFT
0
Comments
So 3.5 beta2 is out and it has quite a lot of features. So one of them is the filtering mechanism for IME languages. This was not a problem in the english and other non-IME languages. The problems were the events associated with IME input - TextInputStart/Update/input... A major concern was that it was not possible to determine where the composition took place. Now all these issues have been fixed and filtering in these languages is a breeze. I came up with a sample calculator with the filtered IME textbox which shows how the filtering is done for IME languages. If you go through the code, you will notice that min max positions of the composition are tracked in the events to determine the correct caret position after the filter is applied. ...
Page 1 of 1 (5 items)