I'd like to create a Viewer for Collada files, my question is, is there any native support for this in WPF?
I am quite new to the 3D-parts of WPF so I don't know how everything works. So I'd like to know if it is even possible and if so, how hard is it? Examples?
Since COLLADA defines an open standard XML schema for exchanging digital assets among various graphics software applications, You can parse as an XML Schema.
You can find a collade parser here - Simple Collada Parser
Please check this - C# kickstart for loading the xmlNodes of a collada document.
UPDATE:
Check this link - Loading a Collada File in a DirectX application