Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / ErrorTableItemStyle.cs / 2 / ErrorTableItemStyle.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Drawing; // A derived TableItemStyle class with the default ForeColor set to Color.Red instead of Color.Empty internal sealed class ErrorTableItemStyle : TableItemStyle, ICustomTypeDescriptor { public ErrorTableItemStyle() : base() { ForeColor = Color.Red; } #region ICustomTypeDesciptor implementation AttributeCollection ICustomTypeDescriptor.GetAttributes() { return TypeDescriptor.GetAttributes(this, true); } string ICustomTypeDescriptor.GetClassName() { return TypeDescriptor.GetClassName(this, true); } string ICustomTypeDescriptor.GetComponentName() { return TypeDescriptor.GetComponentName(this, true); } TypeConverter ICustomTypeDescriptor.GetConverter() { return TypeDescriptor.GetConverter(this, true); } EventDescriptor ICustomTypeDescriptor.GetDefaultEvent() { return TypeDescriptor.GetDefaultEvent(this, true); } PropertyDescriptor ICustomTypeDescriptor.GetDefaultProperty() { return TypeDescriptor.GetDefaultProperty(this, true); } object ICustomTypeDescriptor.GetEditor(Type editorBaseType) { return TypeDescriptor.GetEditor(this, editorBaseType, true); } EventDescriptorCollection ICustomTypeDescriptor.GetEvents() { return TypeDescriptor.GetEvents(this, true); } EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attributes) { return TypeDescriptor.GetEvents(this, attributes, true); } PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { return ((ICustomTypeDescriptor)this).GetProperties(null); } PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) { PropertyDescriptorCollection oldProperties = TypeDescriptor.GetProperties(GetType(), attributes); PropertyDescriptor[] newProperties = new PropertyDescriptor[oldProperties.Count]; PropertyDescriptor foreColor = oldProperties["ForeColor"]; for (int i=0; i < oldProperties.Count; i++) { PropertyDescriptor property = oldProperties[i]; if (property == foreColor) { newProperties[i] = TypeDescriptor.CreateProperty( GetType(), property, new DefaultValueAttribute(typeof(Color), "Red")); } else { newProperties[i] = property; } } return new PropertyDescriptorCollection(newProperties, true); } object ICustomTypeDescriptor.GetPropertyOwner(PropertyDescriptor pd) { return this; } #endregion //ICustomTypeDescriptor implementation } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Drawing; // A derived TableItemStyle class with the default ForeColor set to Color.Red instead of Color.Empty internal sealed class ErrorTableItemStyle : TableItemStyle, ICustomTypeDescriptor { public ErrorTableItemStyle() : base() { ForeColor = Color.Red; } #region ICustomTypeDesciptor implementation AttributeCollection ICustomTypeDescriptor.GetAttributes() { return TypeDescriptor.GetAttributes(this, true); } string ICustomTypeDescriptor.GetClassName() { return TypeDescriptor.GetClassName(this, true); } string ICustomTypeDescriptor.GetComponentName() { return TypeDescriptor.GetComponentName(this, true); } TypeConverter ICustomTypeDescriptor.GetConverter() { return TypeDescriptor.GetConverter(this, true); } EventDescriptor ICustomTypeDescriptor.GetDefaultEvent() { return TypeDescriptor.GetDefaultEvent(this, true); } PropertyDescriptor ICustomTypeDescriptor.GetDefaultProperty() { return TypeDescriptor.GetDefaultProperty(this, true); } object ICustomTypeDescriptor.GetEditor(Type editorBaseType) { return TypeDescriptor.GetEditor(this, editorBaseType, true); } EventDescriptorCollection ICustomTypeDescriptor.GetEvents() { return TypeDescriptor.GetEvents(this, true); } EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attributes) { return TypeDescriptor.GetEvents(this, attributes, true); } PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() { return ((ICustomTypeDescriptor)this).GetProperties(null); } PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attributes) { PropertyDescriptorCollection oldProperties = TypeDescriptor.GetProperties(GetType(), attributes); PropertyDescriptor[] newProperties = new PropertyDescriptor[oldProperties.Count]; PropertyDescriptor foreColor = oldProperties["ForeColor"]; for (int i=0; i < oldProperties.Count; i++) { PropertyDescriptor property = oldProperties[i]; if (property == foreColor) { newProperties[i] = TypeDescriptor.CreateProperty( GetType(), property, new DefaultValueAttribute(typeof(Color), "Red")); } else { newProperties[i] = property; } } return new PropertyDescriptorCollection(newProperties, true); } object ICustomTypeDescriptor.GetPropertyOwner(PropertyDescriptor pd) { return this; } #endregion //ICustomTypeDescriptor implementation } } // 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
- ChannelTraceRecord.cs
- FocusChangedEventArgs.cs
- CodeIndexerExpression.cs
- BitVector32.cs
- TimeoutHelper.cs
- AssociationSet.cs
- FocusChangedEventArgs.cs
- EnumerableRowCollection.cs
- WorkerRequest.cs
- PackagePartCollection.cs
- MessageSecurityOverHttpElement.cs
- XmlNodeList.cs
- SoapEnumAttribute.cs
- MessageQueue.cs
- OTFRasterizer.cs
- PersonalizationState.cs
- securestring.cs
- GenericEnumerator.cs
- FontStyleConverter.cs
- UInt32.cs
- CustomExpressionEventArgs.cs
- EffectiveValueEntry.cs
- ObjectFullSpanRewriter.cs
- DataGridViewRowEventArgs.cs
- MaskedTextBoxDesignerActionList.cs
- XamlTreeBuilderBamlRecordWriter.cs
- webproxy.cs
- ControlDesigner.cs
- ConfigXmlWhitespace.cs
- TextAutomationPeer.cs
- AutomationElementCollection.cs
- ProcessingInstructionAction.cs
- ExpandSegment.cs
- X509ChainElement.cs
- RuleSetCollection.cs
- ApplicationHost.cs
- PopOutPanel.cs
- ValueUtilsSmi.cs
- RegexCompilationInfo.cs
- BufferModeSettings.cs
- SelectionItemPattern.cs
- TraceInternal.cs
- ProgressBarRenderer.cs
- ClientRuntimeConfig.cs
- Int16Converter.cs
- ParameterCollection.cs
- HttpStreams.cs
- MetafileHeaderWmf.cs
- ResizingMessageFilter.cs
- TextEndOfLine.cs
- FixedTextPointer.cs
- ServiceAuthorizationBehavior.cs
- GatewayIPAddressInformationCollection.cs
- EnumValidator.cs
- MemberPathMap.cs
- TextTreeTextBlock.cs
- SelectionPattern.cs
- TypeUsage.cs
- arabicshape.cs
- EntityDataSourceWizardForm.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- UnsafeNativeMethods.cs
- ResourceWriter.cs
- WorkItem.cs
- _ContextAwareResult.cs
- CategoryState.cs
- _TLSstream.cs
- SmiEventSink.cs
- AssemblyInfo.cs
- ImagingCache.cs
- SrgsRuleRef.cs
- FillRuleValidation.cs
- SeverityFilter.cs
- MultiPageTextView.cs
- ECDsa.cs
- CollectionView.cs
- ActivityTypeResolver.xaml.cs
- SwitchElementsCollection.cs
- BezierSegment.cs
- DataGridViewAccessibleObject.cs
- BufferModeSettings.cs
- HttpListenerPrefixCollection.cs
- XmlIgnoreAttribute.cs
- InstanceKey.cs
- FormViewPageEventArgs.cs
- JpegBitmapDecoder.cs
- RecordManager.cs
- ZoneIdentityPermission.cs
- OciEnlistContext.cs
- Page.cs
- DataGridViewDataErrorEventArgs.cs
- NavigationCommands.cs
- WinFormsComponentEditor.cs
- ScriptServiceAttribute.cs
- _emptywebproxy.cs
- DateTimeConstantAttribute.cs
- XmlDigitalSignatureProcessor.cs
- linebase.cs
- AnimatedTypeHelpers.cs
- DataBindingExpressionBuilder.cs