Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Markup / StyleXamlTreeBuilder.cs / 1 / StyleXamlTreeBuilder.cs
/****************************************************************************\ * * File: StyleXamlTreeBuilder.cs * * Purpose: Class that builds a style object from XAML * * History: * 11/13/03: peterost Created * * Copyright (C) 2003 by Microsoft Corporation. All rights reserved. * \***************************************************************************/ using System; using System.Xml; using System.IO; using System.Windows; using System.Text; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Reflection; using System.Windows.Threading; using MS.Utility; namespace System.Windows.Markup { ////// XamlTree builder is the TreeBuilder implementation that loads a Tree /// from XAML. /// internal class StyleXamlTreeBuilder : XamlTreeBuilder { #region Constructors ////// Constructor. Set up associated baml writer and xaml parser to /// create the triumvarate needed for parsing a style block. This is /// the main method to call to create the needed object graph for /// parsing. /// public StyleXamlTreeBuilder( ParserContext parserContext, XamlReaderHelper tokenReader, ReadWriteStreamManager streamManager, ParserStack bamlReaderStack, ArrayList rootList) { Debug.Assert(null != parserContext, "ParserContext is null"); Debug.Assert(null != tokenReader, "TokenReader is null"); Debug.Assert(null != parserContext.XamlTypeMapper, "ParserContext.XamlTypeMapper is null"); Debug.Assert(null != streamManager, "StreamManager is null"); XamlParseMode = tokenReader.XamlParseMode; // Fetch the previous BamlRecordReader XamlTreeBuilderBamlRecordWriter previousBamlRecordWriter = (XamlTreeBuilderBamlRecordWriter)tokenReader.ControllingXamlParser.BamlRecordWriter; BamlRecordReader previousBamlRecordReader = previousBamlRecordWriter.TreeBuilder.RecordReader; Parser = new StyleXamlParser(this, tokenReader, parserContext); Parser.StreamManager = streamManager; Parser.XamlParseMode = XamlParseMode; RecordWriter = new XamlTreeBuilderBamlRecordWriter(this, streamManager.WriterStream, parserContext, true /*isSerializer*/ ); // Give Writer to the Parser, since it can't be passed in constructor due to // circular dependency. Parser.BamlRecordWriter = RecordWriter; // The BamlRecordReader needs its own parser context ParserContext readerParserContext = previousBamlRecordReader.ParserContext; RecordReader = new StyleBamlRecordReader(streamManager.ReaderStream, null, null, readerParserContext, bamlReaderStack, rootList); } #endregion Constructors #region Overrides ////// Forward parsing directive onto xaml parser. /// ////// An array containing the root objects in the XAML stream /// public override object ParseFragment() { // Tell the parser the starting depth Parser.Parse(); // its okay for root to be null if its an empty file or the parse // was stopped. return GetRoot(); } #endregion Overrides ////// Forward the processing of a xaml node to the parser. This is done when there is /// an out-of-band record that needs to be added to the baml stream, such as the /// start of a Style tag. /// internal void ProcessXamlNode(XamlNode xamlNode) { bool cleanup = false; bool done = false; Parser.ProcessXamlNode(xamlNode, ref cleanup, ref done); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. /****************************************************************************\ * * File: StyleXamlTreeBuilder.cs * * Purpose: Class that builds a style object from XAML * * History: * 11/13/03: peterost Created * * Copyright (C) 2003 by Microsoft Corporation. All rights reserved. * \***************************************************************************/ using System; using System.Xml; using System.IO; using System.Windows; using System.Text; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Reflection; using System.Windows.Threading; using MS.Utility; namespace System.Windows.Markup { ////// XamlTree builder is the TreeBuilder implementation that loads a Tree /// from XAML. /// internal class StyleXamlTreeBuilder : XamlTreeBuilder { #region Constructors ////// Constructor. Set up associated baml writer and xaml parser to /// create the triumvarate needed for parsing a style block. This is /// the main method to call to create the needed object graph for /// parsing. /// public StyleXamlTreeBuilder( ParserContext parserContext, XamlReaderHelper tokenReader, ReadWriteStreamManager streamManager, ParserStack bamlReaderStack, ArrayList rootList) { Debug.Assert(null != parserContext, "ParserContext is null"); Debug.Assert(null != tokenReader, "TokenReader is null"); Debug.Assert(null != parserContext.XamlTypeMapper, "ParserContext.XamlTypeMapper is null"); Debug.Assert(null != streamManager, "StreamManager is null"); XamlParseMode = tokenReader.XamlParseMode; // Fetch the previous BamlRecordReader XamlTreeBuilderBamlRecordWriter previousBamlRecordWriter = (XamlTreeBuilderBamlRecordWriter)tokenReader.ControllingXamlParser.BamlRecordWriter; BamlRecordReader previousBamlRecordReader = previousBamlRecordWriter.TreeBuilder.RecordReader; Parser = new StyleXamlParser(this, tokenReader, parserContext); Parser.StreamManager = streamManager; Parser.XamlParseMode = XamlParseMode; RecordWriter = new XamlTreeBuilderBamlRecordWriter(this, streamManager.WriterStream, parserContext, true /*isSerializer*/ ); // Give Writer to the Parser, since it can't be passed in constructor due to // circular dependency. Parser.BamlRecordWriter = RecordWriter; // The BamlRecordReader needs its own parser context ParserContext readerParserContext = previousBamlRecordReader.ParserContext; RecordReader = new StyleBamlRecordReader(streamManager.ReaderStream, null, null, readerParserContext, bamlReaderStack, rootList); } #endregion Constructors #region Overrides ////// Forward parsing directive onto xaml parser. /// ////// An array containing the root objects in the XAML stream /// public override object ParseFragment() { // Tell the parser the starting depth Parser.Parse(); // its okay for root to be null if its an empty file or the parse // was stopped. return GetRoot(); } #endregion Overrides ////// Forward the processing of a xaml node to the parser. This is done when there is /// an out-of-band record that needs to be added to the baml stream, such as the /// start of a Style tag. /// internal void ProcessXamlNode(XamlNode xamlNode) { bool cleanup = false; bool done = false; Parser.ProcessXamlNode(xamlNode, ref cleanup, ref done); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpCacheVary.cs
- ListControl.cs
- PointCollectionConverter.cs
- WebPartVerbCollection.cs
- ProfileSettings.cs
- UserMapPath.cs
- TextFormatter.cs
- BufferAllocator.cs
- DataServiceRequestException.cs
- LayoutTableCell.cs
- WaitHandleCannotBeOpenedException.cs
- ElementHost.cs
- StyleModeStack.cs
- WebPartConnectVerb.cs
- ReachDocumentReferenceCollectionSerializerAsync.cs
- CharStorage.cs
- OledbConnectionStringbuilder.cs
- ContentDisposition.cs
- SqlDesignerDataSourceView.cs
- ConnectionAcceptor.cs
- Simplifier.cs
- Slider.cs
- WorkflowOperationInvoker.cs
- unitconverter.cs
- CodeBinaryOperatorExpression.cs
- LockCookie.cs
- propertyentry.cs
- DesignerHost.cs
- ZipIORawDataFileBlock.cs
- TableItemStyle.cs
- EntityCommand.cs
- InvokePattern.cs
- ActivationArguments.cs
- BrowserCapabilitiesCodeGenerator.cs
- PasswordDeriveBytes.cs
- MulticastOption.cs
- PackageDigitalSignature.cs
- UndoEngine.cs
- SqlFunctions.cs
- RotateTransform3D.cs
- TypefaceCollection.cs
- StateItem.cs
- processwaithandle.cs
- EventLogSession.cs
- UInt32Storage.cs
- XmlnsDefinitionAttribute.cs
- TdsRecordBufferSetter.cs
- DivideByZeroException.cs
- RadioButtonBaseAdapter.cs
- Stack.cs
- ContainsRowNumberChecker.cs
- CompilerGeneratedAttribute.cs
- BufferedReadStream.cs
- BindingMemberInfo.cs
- DataGridViewImageCell.cs
- TextModifierScope.cs
- EntityDataSourceUtil.cs
- ContentIterators.cs
- SafeEventLogWriteHandle.cs
- XmlSecureResolver.cs
- UserUseLicenseDictionaryLoader.cs
- XpsSerializationManagerAsync.cs
- AnnotationResource.cs
- HMACRIPEMD160.cs
- DataStreamFromComStream.cs
- SplineKeyFrames.cs
- EntityViewGenerationAttribute.cs
- HttpRawResponse.cs
- rsa.cs
- WebFaultException.cs
- Stackframe.cs
- SpeechDetectedEventArgs.cs
- TextElementEnumerator.cs
- ObjectTokenCategory.cs
- __Filters.cs
- ResourceContainer.cs
- TemplatedWizardStep.cs
- Monitor.cs
- WebPartConnectionsDisconnectVerb.cs
- HierarchicalDataTemplate.cs
- ForeignKeyConstraint.cs
- DynamicRendererThreadManager.cs
- CompilerScopeManager.cs
- DBSqlParserColumn.cs
- TextEndOfParagraph.cs
- DataServiceQueryOfT.cs
- ConstructorExpr.cs
- DataSourceHelper.cs
- ProxyAttribute.cs
- Line.cs
- BindingBase.cs
- DesigntimeLicenseContext.cs
- PenThreadPool.cs
- SmtpClient.cs
- MexHttpBindingCollectionElement.cs
- DocumentPageHost.cs
- DesignerCategoryAttribute.cs
- Debugger.cs
- QuaternionValueSerializer.cs
- WorkflowApplicationIdleEventArgs.cs