Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / RequestBringIntoViewEventArgs.cs / 1305600 / RequestBringIntoViewEventArgs.cs
using System; namespace System.Windows { ////// The BringIntoViewEventArgs class is used by BringIntoViewEventHandler. /// public class RequestBringIntoViewEventArgs : RoutedEventArgs { ///Initializes a new instance of the BringIntoViewEventArgs class. internal RequestBringIntoViewEventArgs(DependencyObject target, Rect targetRect) { _target = target; _rcTarget = targetRect; } ////// The object to make visible. /// public DependencyObject TargetObject { get { return _target; } } ////// The rectangular region in the object's coordinate space which should be made visible. /// public Rect TargetRect { get { return _rcTarget; } } ////// The mechanism used to call the type-specific handler on the /// target. /// /// /// The generic handler to call in a type-specific way. /// /// /// The target to call the handler on. /// ///protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { RequestBringIntoViewEventHandler handler = (RequestBringIntoViewEventHandler)genericHandler; handler(genericTarget, this); } private DependencyObject _target; // The object to Bring Into View private Rect _rcTarget; // Rectange in the object's coordinate space to bring into view. } } // 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
- SQLMembershipProvider.cs
- IdentityElement.cs
- ContentTextAutomationPeer.cs
- WebDescriptionAttribute.cs
- ApplicationFileCodeDomTreeGenerator.cs
- BidOverLoads.cs
- SafeCryptContextHandle.cs
- NavigationProgressEventArgs.cs
- Logging.cs
- SortDescriptionCollection.cs
- ToolbarAUtomationPeer.cs
- OpacityConverter.cs
- WmlMobileTextWriter.cs
- Stackframe.cs
- WorkflowControlClient.cs
- DocumentPage.cs
- CookieParameter.cs
- WebPageTraceListener.cs
- RealProxy.cs
- BamlBinaryWriter.cs
- RepeaterCommandEventArgs.cs
- ProcessModelSection.cs
- CodeAssignStatement.cs
- loginstatus.cs
- SafeViewOfFileHandle.cs
- FileLoadException.cs
- ServerProtocol.cs
- NullEntityWrapper.cs
- InstanceData.cs
- DataTrigger.cs
- SharedPerformanceCounter.cs
- LambdaCompiler.Logical.cs
- CodeObjectCreateExpression.cs
- DataBindingHandlerAttribute.cs
- AmbientLight.cs
- FontFamily.cs
- HttpContext.cs
- EmbeddedMailObject.cs
- SafeNativeMethods.cs
- WindowsScrollBar.cs
- TreeBuilderXamlTranslator.cs
- FontWeight.cs
- UriTemplate.cs
- ConfigXmlWhitespace.cs
- MimeReflector.cs
- TargetControlTypeCache.cs
- PersonalizableAttribute.cs
- ArcSegment.cs
- FunctionQuery.cs
- KeyedCollection.cs
- GridLength.cs
- UIntPtr.cs
- Vector.cs
- BindingsCollection.cs
- HostingEnvironmentSection.cs
- X509SecurityTokenProvider.cs
- CodeVariableReferenceExpression.cs
- ContentOperations.cs
- TabItemAutomationPeer.cs
- MDIControlStrip.cs
- DataGridViewTextBoxCell.cs
- X509Certificate2.cs
- CachedPathData.cs
- SaveFileDialog.cs
- WebPartEditVerb.cs
- Error.cs
- BaseParser.cs
- RequestStatusBarUpdateEventArgs.cs
- SendSecurityHeader.cs
- BamlLocalizabilityResolver.cs
- ErrorEventArgs.cs
- CollectionViewProxy.cs
- MasterPageBuildProvider.cs
- ToolStripArrowRenderEventArgs.cs
- GiveFeedbackEvent.cs
- InputLanguageProfileNotifySink.cs
- PageThemeBuildProvider.cs
- CapabilitiesAssignment.cs
- SystemSounds.cs
- OpenTypeLayout.cs
- Selection.cs
- FileDialog_Vista.cs
- FontStyleConverter.cs
- PropertyPathWorker.cs
- _FtpControlStream.cs
- Rotation3DAnimationUsingKeyFrames.cs
- ProcessModule.cs
- sqlnorm.cs
- ServiceBusyException.cs
- SolidColorBrush.cs
- _RequestCacheProtocol.cs
- MemoryFailPoint.cs
- Int16Storage.cs
- FindCriteria.cs
- HttpCachePolicyElement.cs
- PaintEvent.cs
- GeometryHitTestResult.cs
- SecurityCriticalDataForSet.cs
- SetStoryboardSpeedRatio.cs
- SqlProfileProvider.cs