Click here to Skip to main content
15,884,099 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
As mention in the subject,
I had tried to google for the solution, but no luck~
I can't find the sources of following reference
"
C#
using System.Windows.Documents;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shell;

"
im using VS2010,
did i need to install anything or change some configuration?

Screenshot reference: https://lh4.googleusercontent.com/-ZCIIB1srrZY/UBFlA6GLuXI/AAAAAAAAALM/5tZAgRLrWX0/s495/Fullscreen+capture+2672012+113856+PM.bmp.jpg[^]
Posted
Updated 26-Jul-12 15:24pm
v2
Comments
[no name] 26-Jul-12 11:50am    
Did you add them as a reference to your project too?
asdf9009 26-Jul-12 11:52am    
i try to get "documents, media,animation,shell" under .NET tab,
but they are not exist there~
[no name] 26-Jul-12 11:55am    
You need to add a reference to the PresentationFramework
asdf9009 26-Jul-12 12:45pm    
Thanks!Solved
Sergey Alexandrovich Kryukov 26-Jul-12 16:12pm    
The English word "important" is an adjective, not a verb. You cannot ask "how to important this and that".
What did you really mean to ask?
--SA

1 solution

You need to add a reference to "PresentationFramework.dll", right click the "References" entry in your project, click "Add Reference", go under the .NET tab and look for it there.
 
Share this answer
 
Comments
asdf9009 26-Jul-12 11:55am    
Thanks for your guidance ! Problem successfully solved =)
Sergey Alexandrovich Kryukov 26-Jul-12 16:42pm    
Right, a 5.
To OP: you should understand that namespaces are not references. 'Using' clauses do not mean referencing anything; the just provide shortened naming for top-level types, so they can be named without writing the whole namespace path; there is no meaning for "using" except this.
--SA

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900