Click here to Skip to main content
15,886,845 members
Articles / Desktop Programming / WPF
Tip/Trick

Implementing the Aero Theme in XP

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
30 May 2011CPOL 14.8K   5  
Controls will have the Aero Theme (WPF)
In the %SystemRoot%\Windows\assembly folder, you will find an assembly named "PresentationFramework.Aero". This is the assembly we'll be using.

In Application.xaml file, under <Application.Resources>, paste this :

XML
<ResourceDictionary source="/PresentationFramework.Aero,Version=3.0.0.0, Culture=neutral,PublicKeyToken=31bf3856ad364e35,ProcessorArchitecture=MSIL;component/themes/aero.normalcolor.xaml" />


Make sure that the Version and PublicKeyToken match with the details you saw in the folder. Replace 31bf3856ad364e35 with the PublicKeyToken shown in the folder.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Student
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --