コード例 #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));
 }