Where is the schema file for http://schemas.microsoft.com/winfx/2006/xaml/presentation located?

I was looking for a schema file describing WPF elements for XAML, but cannot find it. The namespace declaration must have a list of all WPF functions, such as the types, attributes, or elements that it adds to the XAML standard.

I can find the schema file for XAML in the Visual Studo cache directory. The file is called xaml2006.xsd. There is wpfe.xsd, but its target namespace is http://schemas.microsoft.com/client/2007 .

This may seem trivial, but I spent several hours finding this schema file. Where can I find a schema file (XSD file) with targetNamespace set to " http://schemas.microsoft.com/winfx/2006/xaml/presentation "? If it is hidden inside a DLL file, then perhaps there is an open source resource that hosts this schema file?

+6
wpf xaml
source share
1 answer

A little late, I hope this tutorial will be useful for those who are looking for this: The first NS you mention is the default namespace. and it does not exist in the specified URL, but its unique name, etc.

http://video.ch9.ms/ch9/ff6f/e1477e72-b989-49c1-acdd-62802c36ff6f/ABSWP81Part3_mid.mp4 Go to 14.00

He says that mainly use http://schemas.microsoft.com/winfx/2006/xaml :

 <Page x:Class="HelloWorld.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:HelloWorld" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" ?> 
+2
source

All Articles