WPF Controls

TwitterFacebook
Get flash to fully experience Pearltrees
TabControl

TreeView

RadioButton

http://nishantrana.wordpress.com/2009/03/26/using-hyperlink-in-wpf-application/

Using Hyperlink in WPF application

However the NavigateUri works only if we are placing the hyperlink within a page. To use it within a windows-based application we need to hanlde the RequestNavigate event and write the code ourselves.
WPF 4 now includes, in the core runtime libraries, the calendar control. This control previously existed only in the WPF Toolkit, but has been promoted in the latest WPF release. Inclusion in the core runtime library makes it easier to develop with as there is no additional namespace declaration or reference required. Note that all date properties use the DateTime Xaml Syntax for parsing. Not also that unless noted, the control is shown with FlowDirection set to LeftToRight and FirstDateOfWeek set to Sunday. Both may be overridden if desired. http://10rem.net/blog/2009/10/26/introducing-the-wpf-4-calendar-control

Introducing the WPF 4 Calendar

Hosting a WPF Control in a Windows Forms Ap

http://blogs.msdn.com/b/mhendersblog/archive/2005/10/03/476536.aspx (Blogging Tunes: Screaming Headless Torsos - "1995") We've talked about hosting Windows Forms controls in WPF applications, but what about the other way? You may very well want to just keep your existing Windows Forms application and "sprinkle" in some WPF sweetness in strategic places. That means you will need some means to be able to place WPF controls side-by-side with Windows Forms controls.
http://www.jeff.wilcox.name/2010/02/wpfautocompletebox/

AutoCompleteBox: Now with 100% more WPF

Thanks to the work of the WPF Toolkit team (and especially Patrick Danino ), the February 2010 release of the WPF Toolkit includes as new components AutoCompleteBox , plus Accordion and Rating as well. A WPF app that is running one of the AutoCompleteBox samples borrowed from the Silverlight Toolkit samples project, showing major airport names in a drop-down. Resources And a quick aside… when we began our Silverlight Toolkit journey a few years ago, we became immediate advocates within the organization for compatibility with WPF, often building our controls to cross-compile, even if we didn’t have an immediate shipping plan for the WPF builds.
Error! We have recently made changes to the site and resource you are looking for may have moved. Please try our search by typing your keyword in search at top and click Go. Again, sorry for inconvenience.

Charting in WPF

http://www.c-sharpcorner.com/UploadFile/mahesh/WPFCharting11272009153918PM/WPFCharting.aspx
http://pwlodek.blogspot.com/2008/11/wpf-wizard-control.html

WPF Wizard Control - Part I

Writing a custom wizard control (or simply a control of any kind) in many widely used GUI toolkits is usually a challenging task. But it turns out that doing such a control in WPF is rather easy. In this post, I'm going to explain how to create stylable, simple wizard that looks like this: I recommend briefly examining attached source code before reading the post because the code is not short enough to be pasted on a blog.

WPF Wizard Control - Part II

In my previous post about rolling your own WPF wizard control, I've described how one can easily create simple, styleable wizard in WPF. Generally, I blogged that the wizard consists of two things, namely Wizard class - representing the wizard with its buttons (Next, Previous, Finish, etc.) and simple behavior concerned around managing which wizard page should be displayed, WizardPage class - representing a container for a single wizard page. http://pwlodek.blogspot.com/2009/02/wpf-wizard-control-part-ii.html