Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / InterOp / HwndSourceKeyboardInputSite.cs / 2 / HwndSourceKeyboardInputSite.cs
using System; using System.Windows.Input; using System.Collections; using MS.Win32; using System.Windows.Media; using System.Windows.Threading; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; using System.Security ; using MS.Internal.PresentationCore; namespace System.Windows.Interop { internal class HwndSourceKeyboardInputSite : IKeyboardInputSite { public HwndSourceKeyboardInputSite(HwndSource source, IKeyboardInputSink sink) { if(source == null) { throw new ArgumentNullException("source"); } if(sink == null) { throw new ArgumentNullException("sink"); } if(!(sink is UIElement)) { throw new ArgumentException(SR.Get(SRID.KeyboardSinkMustBeAnElement), "sink"); } _source = source; _sink = sink; _sink.KeyboardInputSite = this; _sinkElement = sink as UIElement; } #region IKeyboardInputSite ////// Unregisters a child KeyboardInputSink from this sink. /// ////// Requires unmanaged code permission. /// ////// Critical - calls CriticalUnregister. /// TreatAsSafe: - Interface declaration demands unrestricted UI permission /// [ SecurityCritical,SecurityTreatAsSafe ] void IKeyboardInputSite.Unregister() { CriticalUnregister(); } ////// Unregisters a child KeyboardInputSink from this sink. /// ////// Critical - calls CriticalUnregisterKeyboardInputSink /// [ SecurityCritical ] internal void CriticalUnregister() { if(_source != null && _sink != null) { _source.CriticalUnregisterKeyboardInputSink(this); _sink.KeyboardInputSite = null; } _source = null; _sink = null; } ////// Returns the sink associated with this site (the "child", not /// the "parent" sink that owns the site). There's no way of /// getting from the site to the parent sink. /// IKeyboardInputSink IKeyboardInputSite.Sink { get { return _sink; } } ////// Components call this when they want to move focus ("tab") but /// have nowhere further to tab within their own component. Return /// value is true if the site moved focus, false if the calling /// component still has focus and should wrap around. /// bool IKeyboardInputSite.OnNoMoreTabStops(TraversalRequest request) { bool traversed = false; if(_sinkElement != null) { traversed = _sinkElement.MoveFocus(request); } return traversed; } #endregion IKeyboardInputSite private HwndSource _source; private IKeyboardInputSink _sink; private UIElement _sinkElement; } } // 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
- HashCodeCombiner.cs
- CompilerGlobalScopeAttribute.cs
- DbParameterHelper.cs
- CharAnimationBase.cs
- WindowsHyperlink.cs
- VirtualPathProvider.cs
- StylusPointPropertyUnit.cs
- TemplatedWizardStep.cs
- CustomErrorsSectionWrapper.cs
- CompositeCollectionView.cs
- GiveFeedbackEvent.cs
- SingleSelectRootGridEntry.cs
- KnownTypes.cs
- BamlRecords.cs
- BaseCodeDomTreeGenerator.cs
- DesignerForm.cs
- SourceInterpreter.cs
- Confirm.cs
- ImageCodecInfo.cs
- OdbcConnectionPoolProviderInfo.cs
- ItemAutomationPeer.cs
- WebPartConnectionsCloseVerb.cs
- DocumentEventArgs.cs
- TemplateControlBuildProvider.cs
- EncodingTable.cs
- ReaderContextStackData.cs
- MonthCalendarDesigner.cs
- WebBrowserPermission.cs
- ResXDataNode.cs
- HttpCacheVary.cs
- ProtocolsConfigurationHandler.cs
- CatalogPart.cs
- RowParagraph.cs
- SupportsEventValidationAttribute.cs
- Signature.cs
- WCFModelStrings.Designer.cs
- ProjectionPruner.cs
- WinFormsSpinner.cs
- PenContext.cs
- DataSourceCache.cs
- GACMembershipCondition.cs
- AppDomainUnloadedException.cs
- PersonalizablePropertyEntry.cs
- OdbcParameterCollection.cs
- DataControlFieldHeaderCell.cs
- XmlText.cs
- SHA1CryptoServiceProvider.cs
- SubtreeProcessor.cs
- ToolStripSettings.cs
- DataGridComboBoxColumn.cs
- AnnotationComponentChooser.cs
- HeaderedItemsControl.cs
- NamedPermissionSet.cs
- HttpCookie.cs
- SafeFileMappingHandle.cs
- HttpBrowserCapabilitiesWrapper.cs
- XmlQueryCardinality.cs
- Vector3DCollection.cs
- Trustee.cs
- ClientData.cs
- Rfc2898DeriveBytes.cs
- EntityContainer.cs
- SimpleType.cs
- StylusPointCollection.cs
- Win32PrintDialog.cs
- StatusBar.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- StateDesigner.TransitionInfo.cs
- PenLineCapValidation.cs
- SspiHelper.cs
- BinHexEncoding.cs
- ColumnWidthChangedEvent.cs
- XamlReaderHelper.cs
- CacheDependency.cs
- DbUpdateCommandTree.cs
- ProfileBuildProvider.cs
- SectionXmlInfo.cs
- ProtocolsSection.cs
- EdmFunction.cs
- MultiTargetingUtil.cs
- XmlSchemaImport.cs
- SoapFault.cs
- DockPattern.cs
- TimeIntervalCollection.cs
- FormsAuthenticationUser.cs
- AtlasWeb.Designer.cs
- FileInfo.cs
- XamlSerializer.cs
- WCFServiceClientProxyGenerator.cs
- XmlRawWriter.cs
- SecurityKeyIdentifier.cs
- PostBackOptions.cs
- CompositionTarget.cs
- EntityDataSourceSelectedEventArgs.cs
- GetPageCompletedEventArgs.cs
- BulletDecorator.cs
- ColorAnimationBase.cs
- ObjectHandle.cs
- SqlDataSourceConfigureFilterForm.cs
- Matrix3DStack.cs