Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Automation / Peers / WindowAutomationPeer.cs / 1305600 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlSchemaAnnotated.cs
- TextServicesCompartmentContext.cs
- UIPermission.cs
- WebPartTransformer.cs
- IPipelineRuntime.cs
- CroppedBitmap.cs
- PartDesigner.cs
- InvokePattern.cs
- VBCodeProvider.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- SplitterEvent.cs
- SafeNativeMethods.cs
- GroupBoxDesigner.cs
- TemplateEditingFrame.cs
- FormatStringEditor.cs
- DesignRelation.cs
- SymbolEqualComparer.cs
- RowSpanVector.cs
- FormParameter.cs
- PropertyToken.cs
- CheckoutException.cs
- SizeFConverter.cs
- ThreadStateException.cs
- MsmqIntegrationAppDomainProtocolHandler.cs
- ImageCodecInfoPrivate.cs
- NameNode.cs
- GotoExpression.cs
- Version.cs
- JapaneseCalendar.cs
- SemanticAnalyzer.cs
- Convert.cs
- XmlLanguageConverter.cs
- DLinqColumnProvider.cs
- FixedElement.cs
- PropertyNames.cs
- SafeWaitHandle.cs
- PieceDirectory.cs
- SetIterators.cs
- MemberMaps.cs
- SqlCacheDependencyDatabase.cs
- DataSetViewSchema.cs
- PolyLineSegment.cs
- DictionaryEntry.cs
- ConfigurationException.cs
- Property.cs
- SoundPlayer.cs
- UiaCoreProviderApi.cs
- SqlUtils.cs
- JoinSymbol.cs
- PtsPage.cs
- PropertyToken.cs
- Pair.cs
- ScrollBar.cs
- PartitionedStreamMerger.cs
- DecimalConverter.cs
- EpmTargetPathSegment.cs
- EntityKey.cs
- OpenTypeLayoutCache.cs
- CodeCommentStatementCollection.cs
- HttpFileCollection.cs
- WebCategoryAttribute.cs
- SerialReceived.cs
- LoginUtil.cs
- OletxTransactionManager.cs
- OpenFileDialog.cs
- PageContentAsyncResult.cs
- HttpHandler.cs
- StateDesigner.Layouts.cs
- PKCS1MaskGenerationMethod.cs
- IndentTextWriter.cs
- ForwardPositionQuery.cs
- PeerValidationBehavior.cs
- ExtensionQuery.cs
- ToolStripDropDownClosedEventArgs.cs
- sitestring.cs
- MetafileHeaderWmf.cs
- XmlProcessingInstruction.cs
- DataGridViewColumnHeaderCell.cs
- ObjectQuery.cs
- XmlSchema.cs
- NamedPipeTransportSecurity.cs
- Gdiplus.cs
- ColumnHeaderConverter.cs
- PageParserFilter.cs
- QueryOptionExpression.cs
- PropertyFilterAttribute.cs
- XmlJsonWriter.cs
- Module.cs
- FileDialog.cs
- FusionWrap.cs
- ObjectResult.cs
- GeneralTransform3D.cs
- FixedSchema.cs
- StreamUpgradeAcceptor.cs
- UInt16Converter.cs
- RSAPKCS1KeyExchangeFormatter.cs
- StickyNoteContentControl.cs
- XmlElementCollection.cs
- SystemEvents.cs
- Decimal.cs