Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / EventSetter.cs / 1305600 / EventSetter.cs
/****************************************************************************\ * * File: SetterBase.cs * * TargetType event setting class. * * Copyright (C) 2004 by Microsoft Corporation. All rights reserved. * \***************************************************************************/ using System; using System.ComponentModel; // EditorBrowsableAttribute namespace System.Windows { ////// TargetType event setting class. /// public class EventSetter : SetterBase { ////// EventSetter construction /// public EventSetter() { } ////// EventSetter construction /// public EventSetter(RoutedEvent routedEvent, Delegate handler) { if (routedEvent == null) { throw new ArgumentNullException("routedEvent"); } if (handler == null) { throw new ArgumentNullException("handler"); } _event = routedEvent; _handler = handler; } ////// Event that is being set by this setter /// public RoutedEvent Event { get { return _event; } set { if (value == null) { throw new ArgumentNullException("value"); } CheckSealed(); _event = value; } } ////// Handler delegate that is being set by this setter /// [TypeConverter(typeof(System.Windows.Markup.EventSetterHandlerConverter))] public Delegate Handler { get { return _handler; } set { if (value == null) { throw new ArgumentNullException("value"); } CheckSealed(); _handler = value; } } ////// HandledEventsToo flag that is being set by this setter /// [EditorBrowsable(EditorBrowsableState.Never)] public bool HandledEventsToo { get { return _handledEventsToo; } set { CheckSealed(); _handledEventsToo = value; } } // // Do the error checking that we can only do once all of the properties have been // set, then call up to base. // internal override void Seal() { if (_event == null) { throw new ArgumentException(SR.Get(SRID.NullPropertyIllegal, "EventSetter.Event")); } if (_handler == null) { throw new ArgumentException(SR.Get(SRID.NullPropertyIllegal, "EventSetter.Handler")); } if (_handler.GetType() != _event.HandlerType) { throw new ArgumentException(SR.Get(SRID.HandlerTypeIllegal)); } base.Seal(); } private RoutedEvent _event; private Delegate _handler; private bool _handledEventsToo; } } // 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
- RightsManagementEncryptionTransform.cs
- TempFiles.cs
- GridViewSortEventArgs.cs
- FileAuthorizationModule.cs
- DatePicker.cs
- ResourcesBuildProvider.cs
- XmlSerializerVersionAttribute.cs
- PagedDataSource.cs
- MemoryMappedFileSecurity.cs
- WebPartEditorOkVerb.cs
- CalloutQueueItem.cs
- DefaultPrintController.cs
- HttpRequestWrapper.cs
- ObjectItemAttributeAssemblyLoader.cs
- FollowerQueueCreator.cs
- StringSorter.cs
- CodeEventReferenceExpression.cs
- SafeArrayTypeMismatchException.cs
- BStrWrapper.cs
- DateTimeUtil.cs
- BamlLocalizer.cs
- SystemException.cs
- DBConnectionString.cs
- SQLDouble.cs
- ClickablePoint.cs
- IntellisenseTextBox.cs
- ObjectDataSourceChooseTypePanel.cs
- Debug.cs
- InputReport.cs
- RuntimeCompatibilityAttribute.cs
- StringToken.cs
- EntityKeyElement.cs
- _NegoStream.cs
- NativeBuffer.cs
- DataGridViewMethods.cs
- PrivilegeNotHeldException.cs
- HtmlSelectionListAdapter.cs
- RijndaelManagedTransform.cs
- KnownTypesHelper.cs
- WpfKnownMember.cs
- RootContext.cs
- SystemInformation.cs
- InvokeProviderWrapper.cs
- ProxyWebPartManager.cs
- HttpAsyncResult.cs
- SqlGenerator.cs
- ThreadSafeList.cs
- InstanceData.cs
- CompilerScope.cs
- GradientSpreadMethodValidation.cs
- DocumentPageView.cs
- InvalidCastException.cs
- MetadataArtifactLoader.cs
- WebDescriptionAttribute.cs
- SystemIPGlobalStatistics.cs
- WebPartHelpVerb.cs
- SchemaCollectionCompiler.cs
- PrinterResolution.cs
- ExpandableObjectConverter.cs
- GenerateScriptTypeAttribute.cs
- PublisherMembershipCondition.cs
- UserControlBuildProvider.cs
- UIElementCollection.cs
- HyperLinkStyle.cs
- DetailsViewUpdatedEventArgs.cs
- XmlCharacterData.cs
- OuterGlowBitmapEffect.cs
- DataGridViewLayoutData.cs
- PatternMatcher.cs
- StrokeNodeEnumerator.cs
- TemplateBamlTreeBuilder.cs
- Property.cs
- Formatter.cs
- MultipartContentParser.cs
- NotFiniteNumberException.cs
- SpellerHighlightLayer.cs
- OptionUsage.cs
- OdbcEnvironmentHandle.cs
- Dictionary.cs
- ExpandSegmentCollection.cs
- ElasticEase.cs
- ConcurrentBag.cs
- XmlCollation.cs
- InputQueue.cs
- ClientUriBehavior.cs
- IndentedTextWriter.cs
- MemberNameValidator.cs
- RegexWriter.cs
- Track.cs
- ThreadExceptionDialog.cs
- SQLDateTimeStorage.cs
- XmlSchemaAttributeGroup.cs
- BaseTemplateParser.cs
- BounceEase.cs
- CfgRule.cs
- SimpleFileLog.cs
- ValueTypePropertyReference.cs
- CodeDomLocalizationProvider.cs
- SamlDoNotCacheCondition.cs
- EndpointNotFoundException.cs