예제 #1
0
파일: XamlPullParser.cs 프로젝트: wwl50/wpf
        private XamlNode Logic_EndObject()
        {
            XamlType xamlType = _context.CurrentType;

            _context.PopScope();
            _context.CurrentPreviousChildType = xamlType;

            XamlNode endObj = new XamlNode(XamlNodeType.EndObject);

            return(endObj);
        }
예제 #2
0
 private XamlNode Logic_EndObject()
 {
     _context.PopScope();
     return(new XamlNode(XamlNodeType.EndObject));
 }