예제 #1
0
        public static PropertyPath Parse(string value, XamlNamespaces namespaces = null)
        {
            PropertyPathParser parser = new PropertyPathParser(value, namespaces ?? XamlNamespaces.Empty, null);

            return(new PropertyPath(parser.Parse()));
        }