Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Automation / Peers / WindowAutomationPeer.cs / 1 / WindowAutomationPeer.cs
using System; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; using System.Text; using System.Windows; using System.Windows.Interop; using System.Windows.Media; using System.ComponentModel; using MS.Internal; using MS.Win32; // Used to support the warnings disabled below #pragma warning disable 1634, 1691 namespace System.Windows.Automation.Peers { /// public class WindowAutomationPeer : FrameworkElementAutomationPeer { /// public WindowAutomationPeer(Window owner): base(owner) {} /// override protected string GetClassNameCore() { return "Window"; } /// ////// Critical: As this accesses Handle /// TreatAsSafe: Returning the Window Title is considered safe - discussed on Automation TA review /// [SecurityCritical,SecurityTreatAsSafe] override protected string GetNameCore() { string name = base.GetNameCore(); if(name == string.Empty) { Window window = (Window)Owner; if(!window.IsSourceWindowNull) { StringBuilder sb = new StringBuilder(512); UnsafeNativeMethods.GetWindowText(new HandleRef(null, window.CriticalHandle), sb, sb.Capacity); name = sb.ToString(); if (name == null) name = string.Empty; } } return name; } /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Window; } /// ////// Critical as this method accesses critical data. /// TreatAsSafe - window bounds by themselves is considered safe. /// [SecurityCritical, SecurityTreatAsSafe ] override protected Rect GetBoundingRectangleCore() { Window window = (Window)Owner; Rect bounds = new Rect(0,0,0,0); if(!window.IsSourceWindowNull) { NativeMethods.RECT rc = new NativeMethods.RECT(0,0,0,0); IntPtr windowHandle = window.CriticalHandle; if(windowHandle != IntPtr.Zero) //it is Zero on a window that was just closed { try { SafeNativeMethods.GetWindowRect(new HandleRef(null, windowHandle), ref rc); } // Allow empty catch statements. #pragma warning disable 56502 catch(Win32Exception) {} // Disallow empty catch statements. #pragma warning restore 56502 } bounds = new Rect(rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top); } return bounds; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; using System.Text; using System.Windows; using System.Windows.Interop; using System.Windows.Media; using System.ComponentModel; using MS.Internal; using MS.Win32; // Used to support the warnings disabled below #pragma warning disable 1634, 1691 namespace System.Windows.Automation.Peers { /// public class WindowAutomationPeer : FrameworkElementAutomationPeer { /// public WindowAutomationPeer(Window owner): base(owner) {} /// override protected string GetClassNameCore() { return "Window"; } /// ////// Critical: As this accesses Handle /// TreatAsSafe: Returning the Window Title is considered safe - discussed on Automation TA review /// [SecurityCritical,SecurityTreatAsSafe] override protected string GetNameCore() { string name = base.GetNameCore(); if(name == string.Empty) { Window window = (Window)Owner; if(!window.IsSourceWindowNull) { StringBuilder sb = new StringBuilder(512); UnsafeNativeMethods.GetWindowText(new HandleRef(null, window.CriticalHandle), sb, sb.Capacity); name = sb.ToString(); if (name == null) name = string.Empty; } } return name; } /// override protected AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Window; } /// ////// Critical as this method accesses critical data. /// TreatAsSafe - window bounds by themselves is considered safe. /// [SecurityCritical, SecurityTreatAsSafe ] override protected Rect GetBoundingRectangleCore() { Window window = (Window)Owner; Rect bounds = new Rect(0,0,0,0); if(!window.IsSourceWindowNull) { NativeMethods.RECT rc = new NativeMethods.RECT(0,0,0,0); IntPtr windowHandle = window.CriticalHandle; if(windowHandle != IntPtr.Zero) //it is Zero on a window that was just closed { try { SafeNativeMethods.GetWindowRect(new HandleRef(null, windowHandle), ref rc); } // Allow empty catch statements. #pragma warning disable 56502 catch(Win32Exception) {} // Disallow empty catch statements. #pragma warning restore 56502 } bounds = new Rect(rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top); } return bounds; } } } // 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
- SectionRecord.cs
- ViewStateException.cs
- DbConvert.cs
- Signature.cs
- RecognizedPhrase.cs
- MarkupExtensionParser.cs
- odbcmetadatafactory.cs
- CommonDialog.cs
- DictionaryEditChange.cs
- ComponentEditorForm.cs
- SafeArchiveContext.cs
- QuerySettings.cs
- _OSSOCK.cs
- PeerContact.cs
- MetabaseSettings.cs
- DatagridviewDisplayedBandsData.cs
- EntityDescriptor.cs
- CodeGeneratorOptions.cs
- ProgramNode.cs
- DefaultBindingPropertyAttribute.cs
- RequestCacheEntry.cs
- QuaternionRotation3D.cs
- NameService.cs
- XPathAxisIterator.cs
- SessionPageStatePersister.cs
- VectorAnimationBase.cs
- NumberFunctions.cs
- TypeBrowser.xaml.cs
- BufferBuilder.cs
- WebUtility.cs
- DocumentReferenceCollection.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- CodeTypeDelegate.cs
- Matrix.cs
- RootBrowserWindowAutomationPeer.cs
- FixedFlowMap.cs
- StorageMappingFragment.cs
- SQLBinary.cs
- DispatcherEventArgs.cs
- LineGeometry.cs
- OneOfConst.cs
- Point3DCollectionValueSerializer.cs
- ListViewContainer.cs
- ClientProxyGenerator.cs
- Stylus.cs
- XmlCharacterData.cs
- QueuePathDialog.cs
- ExtensionDataReader.cs
- SqlProfileProvider.cs
- PropertyChangedEventManager.cs
- SimpleType.cs
- metadatamappinghashervisitor.cs
- IconConverter.cs
- CollectionChange.cs
- ServiceDescriptionImporter.cs
- CodeEventReferenceExpression.cs
- ComplexPropertyEntry.cs
- RenderDataDrawingContext.cs
- BuildDependencySet.cs
- SspiSecurityTokenParameters.cs
- PackageRelationshipSelector.cs
- NoClickablePointException.cs
- HandlerBase.cs
- FixedSOMTableCell.cs
- ScalarType.cs
- HostUtils.cs
- ItemList.cs
- GlobalProxySelection.cs
- Assert.cs
- StateBag.cs
- Menu.cs
- DatagramAdapter.cs
- XmlValidatingReader.cs
- C14NUtil.cs
- XmlArrayItemAttribute.cs
- TextBoxBase.cs
- StreamGeometry.cs
- ModifiableIteratorCollection.cs
- SelectionItemPattern.cs
- ZoomingMessageFilter.cs
- GeometryDrawing.cs
- ModelPerspective.cs
- Matrix.cs
- SqlDataSourceStatusEventArgs.cs
- ItemMap.cs
- ContentPosition.cs
- WmlPageAdapter.cs
- fixedPageContentExtractor.cs
- Trace.cs
- TimeStampChecker.cs
- AnonymousIdentificationSection.cs
- ListItemConverter.cs
- CompositionTarget.cs
- SortQuery.cs
- EditorBrowsableAttribute.cs
- Win32Exception.cs
- SecurityException.cs
- DomainUpDown.cs
- Header.cs
- TextSelectionProcessor.cs