/// <summary> /// Write Property IDictionary Start /// </summary> public override void WritePropertyIDictionaryStart(XamlPropertyIDictionaryStartNode xamlPropertyIDictionaryStartNode) { StyleMode mode = _styleModeStack.Mode; if (mode == StyleMode.VisualTree) { _visualTreeComplexPropertyDepth++; } else if (mode == StyleMode.TriggerBase) { _triggerComplexPropertyDepth++; } else if (_styleModeStack.Depth == 1 && mode == StyleMode.Base) { if( xamlPropertyIDictionaryStartNode.PropName == XamlTemplateSerializer.ResourcesPropertyName) { mode = StyleMode.Resources; } else { ThrowException(SRID.TemplateUnknownProp, xamlPropertyIDictionaryStartNode.PropName, xamlPropertyIDictionaryStartNode.LineNumber, xamlPropertyIDictionaryStartNode.LinePosition); } } base.WritePropertyIDictionaryStart(xamlPropertyIDictionaryStartNode); _styleModeStack.Push(mode); }
/// <summary> /// Write Property IDictionary Start /// </summary> public virtual void WritePropertyIDictionaryStart(XamlPropertyIDictionaryStartNode xamlPropertyIDictionaryStartNode) { if (BamlRecordWriter != null) { BamlRecordWriter.WritePropertyIDictionaryStart(xamlPropertyIDictionaryStartNode); } }
// Write the start of a complex property that implements IDictionary internal void WritePropertyIDictionaryStart( XamlPropertyIDictionaryStartNode xamlPropertyIDictionaryStartNode) { // initialize the element and add to the stack BamlPropertyIDictionaryStartRecord bamlPropertyIDictionaryStart = (BamlPropertyIDictionaryStartRecord) BamlRecordManager.GetWriteRecord(BamlRecordType.PropertyIDictionaryStart); bamlPropertyIDictionaryStart.AttributeId = MapTable.AddAttributeInfoMap(BinaryWriter, xamlPropertyIDictionaryStartNode.AssemblyName, xamlPropertyIDictionaryStartNode.TypeFullName, xamlPropertyIDictionaryStartNode.PropDeclaringType, xamlPropertyIDictionaryStartNode.PropName, null, BamlAttributeUsage.Default); WriteAndReleaseRecord(bamlPropertyIDictionaryStart, xamlPropertyIDictionaryStartNode); }
/// <summary> /// Create nodes for a complex property that surrounds an element tree. /// Note that this is for general properties and not def attributes. /// </summary> internal void CompileAttribute( ArrayList xamlNodes, AttributeData data) { // For MarkupExtension syntax, treat PropertyInfo as a CLR property, but MethodInfo // and DependencyProperty as a DependencyProperty. Note that the MarkupCompiler // will handle the case where a DependencyProperty callback is made if it gets // a MethodInfo for the attached property setter. string declaringTypeAssemblyName = data.DeclaringType.Assembly.FullName; string declaringTypeFullName = data.DeclaringType.FullName; // Find the PropertyRecordType to use in this case Type propertyType; bool propertyCanWrite; XamlTypeMapper.GetPropertyType(data.Info, out propertyType, out propertyCanWrite); BamlRecordType propertyRecordType = BamlRecordManager.GetPropertyStartRecordType(propertyType, propertyCanWrite); // Create the property start and end records XamlNode propertyStart; XamlNode propertyEnd; switch (propertyRecordType) { case BamlRecordType.PropertyArrayStart: { propertyStart = new XamlPropertyArrayStartNode( data.LineNumber, data.LinePosition, data.Depth, data.Info, declaringTypeAssemblyName, declaringTypeFullName, data.PropertyName); propertyEnd = new XamlPropertyArrayEndNode( data.LineNumber, data.LinePosition, data.Depth); break; } case BamlRecordType.PropertyIDictionaryStart: { propertyStart = new XamlPropertyIDictionaryStartNode( data.LineNumber, data.LinePosition, data.Depth, data.Info, declaringTypeAssemblyName, declaringTypeFullName, data.PropertyName); propertyEnd = new XamlPropertyIDictionaryEndNode( data.LineNumber, data.LinePosition, data.Depth); break; } case BamlRecordType.PropertyIListStart: { propertyStart = new XamlPropertyIListStartNode( data.LineNumber, data.LinePosition, data.Depth, data.Info, declaringTypeAssemblyName, declaringTypeFullName, data.PropertyName); propertyEnd = new XamlPropertyIListEndNode( data.LineNumber, data.LinePosition, data.Depth); break; } default: // PropertyComplexStart { propertyStart = new XamlPropertyComplexStartNode( data.LineNumber, data.LinePosition, data.Depth, data.Info, declaringTypeAssemblyName, declaringTypeFullName, data.PropertyName); propertyEnd = new XamlPropertyComplexEndNode( data.LineNumber, data.LinePosition, data.Depth); break; } } // NOTE: Add duplicate property checking here as is done in XamlReaderHelper xamlNodes.Add(propertyStart); CompileAttributeCore(xamlNodes, data); xamlNodes.Add(propertyEnd); }
/// <summary> /// Write Property IDictionary Start /// </summary> public override void WritePropertyIDictionaryStart(XamlPropertyIDictionaryStartNode xamlPropertyIDictionaryStartNode) { StyleMode mode = _styleModeStack.Mode; if (_styleModeStack.Depth == 1 && mode == StyleMode.Base) { if (xamlPropertyIDictionaryStartNode.PropName == XamlStyleSerializer.ResourcesPropertyName) { mode = StyleMode.Resources; } else { ThrowException(SRID.StyleUnknownProp, xamlPropertyIDictionaryStartNode.PropName, xamlPropertyIDictionaryStartNode.LineNumber, xamlPropertyIDictionaryStartNode.LinePosition); } } base.WritePropertyIDictionaryStart(xamlPropertyIDictionaryStartNode); _styleModeStack.Push(mode); }