Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / EventSetter.cs / 1 / 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 /// 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
- OletxCommittableTransaction.cs
- TraceEventCache.cs
- Events.cs
- FileUpload.cs
- WebPartConnectionsConnectVerb.cs
- TemplateAction.cs
- OneOfTypeConst.cs
- CryptoStream.cs
- NameValueFileSectionHandler.cs
- SoapAttributeOverrides.cs
- BaseParaClient.cs
- WebServiceData.cs
- LogEntrySerializer.cs
- SharedDp.cs
- XamlSerializationHelper.cs
- UIElementParagraph.cs
- PersonalizationState.cs
- WindowsEditBox.cs
- OptimalBreakSession.cs
- TraceContextRecord.cs
- ConstraintStruct.cs
- ColorKeyFrameCollection.cs
- RC2CryptoServiceProvider.cs
- WorkflowTraceTransfer.cs
- ClientSettingsProvider.cs
- Stack.cs
- OptimizedTemplateContentHelper.cs
- ExpandedProjectionNode.cs
- CompositeCollection.cs
- AutomationPatternInfo.cs
- TextTreeText.cs
- Crc32.cs
- HMACSHA384.cs
- AsymmetricSignatureDeformatter.cs
- ProtocolsConfigurationHandler.cs
- ApplicationCommands.cs
- PrintDialogException.cs
- ValuePattern.cs
- MLangCodePageEncoding.cs
- XDRSchema.cs
- BaseDataListPage.cs
- OutputCacheProfile.cs
- HtmlTableRowCollection.cs
- DynamicRendererThreadManager.cs
- WebPartTransformerAttribute.cs
- Misc.cs
- MeasureItemEvent.cs
- NumberFunctions.cs
- RuleSetReference.cs
- QilChoice.cs
- ThemeableAttribute.cs
- sqlstateclientmanager.cs
- BitmapEffectDrawing.cs
- CompressionTracing.cs
- XmlReflectionMember.cs
- CaseInsensitiveOrdinalStringComparer.cs
- ServiceHttpHandlerFactory.cs
- EditorPartCollection.cs
- IsolatedStorageFileStream.cs
- ElementProxy.cs
- PasswordDeriveBytes.cs
- DocumentPage.cs
- ExpressionBuilderContext.cs
- DBConnectionString.cs
- PasswordDeriveBytes.cs
- SqlCharStream.cs
- ProfileServiceManager.cs
- ObjectSet.cs
- AsyncSerializedWorker.cs
- ExtentKey.cs
- SiteMapPath.cs
- RangeBaseAutomationPeer.cs
- PolicyStatement.cs
- OleDbInfoMessageEvent.cs
- MemberRelationshipService.cs
- MimeTextImporter.cs
- StyleCollection.cs
- InstanceKeyCollisionException.cs
- ByteStreamMessageEncoderFactory.cs
- OracleCommandSet.cs
- KoreanLunisolarCalendar.cs
- XPathPatternBuilder.cs
- Queue.cs
- x509utils.cs
- FunctionDetailsReader.cs
- Stacktrace.cs
- RuntimeConfigLKG.cs
- IChannel.cs
- OraclePermissionAttribute.cs
- DataGridViewRowCollection.cs
- CalloutQueueItem.cs
- ClientScriptManager.cs
- SQLInt16Storage.cs
- AccessControlList.cs
- SafeHandle.cs
- AddInAttribute.cs
- FocusWithinProperty.cs
- HttpServerVarsCollection.cs
- Metafile.cs
- Reference.cs