Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Input / TextServicesCompartmentEventSink.cs / 1305600 / TextServicesCompartmentEventSink.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: Manages Text Services Compartment. // // History: // 07/30/2003 : yutakas - Ported from .net tree. // //--------------------------------------------------------------------------- using System; using System.Runtime.InteropServices; using System.Windows.Threading; using System.Diagnostics; using System.Collections; using System.Security.Permissions; using MS.Utility; using MS.Win32; namespace System.Windows.Input { //----------------------------------------------------- // // TextServicesCompartmentManager class // //----------------------------------------------------- ////// This is a class to have a real implement of ITfCompartmentEventSink. /// internal class TextServicesCompartmentEventSink : UnsafeNativeMethods.ITfCompartmentEventSink { //------------------------------------------------------ // // Constructors // //----------------------------------------------------- internal TextServicesCompartmentEventSink(InputMethod inputmethod) { _inputmethod = inputmethod; } //------------------------------------------------------ // // Public Method // //------------------------------------------------------ ////// This is OnChange method of ITfCompartmentEventSink internface. /// public void OnChange(ref Guid rguid) { _inputmethod.OnChange(ref rguid); } //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ #region Private Fields private InputMethod _inputmethod; #endregion Private Fields } } // 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
- TextSerializer.cs
- QuadraticBezierSegment.cs
- UseLicense.cs
- ProxyWebPartConnectionCollection.cs
- ResourceReferenceKeyNotFoundException.cs
- ItemAutomationPeer.cs
- xsdvalidator.cs
- LookupTables.cs
- DictionaryEntry.cs
- BitmapCodecInfo.cs
- TextTreeRootNode.cs
- ConstructorArgumentAttribute.cs
- SqlClientMetaDataCollectionNames.cs
- MediaElement.cs
- CallContext.cs
- XmlnsCache.cs
- MenuItemStyle.cs
- RsaKeyIdentifierClause.cs
- RadioButtonFlatAdapter.cs
- ListViewCancelEventArgs.cs
- WebFormDesignerActionService.cs
- XNodeValidator.cs
- StdValidatorsAndConverters.cs
- ScriptModule.cs
- Timer.cs
- CreateParams.cs
- IPEndPoint.cs
- BinaryFormatterWriter.cs
- OperandQuery.cs
- EnumerableRowCollection.cs
- NamespaceList.cs
- DataServiceRequest.cs
- SAPICategories.cs
- ModelTreeEnumerator.cs
- PointCollection.cs
- OleDbInfoMessageEvent.cs
- StringArrayEditor.cs
- HttpApplication.cs
- DynamicRenderer.cs
- KeySplineConverter.cs
- ExpandoClass.cs
- PopupEventArgs.cs
- PeerInvitationResponse.cs
- DrawingGroup.cs
- ReflectionUtil.cs
- InProcStateClientManager.cs
- Delegate.cs
- DataObjectAttribute.cs
- UInt16Storage.cs
- CompiledXpathExpr.cs
- TargetConverter.cs
- SplitterPanel.cs
- WindowsIPAddress.cs
- IDReferencePropertyAttribute.cs
- MimeBasePart.cs
- ProtocolsConfigurationEntry.cs
- XPathPatternBuilder.cs
- CommentAction.cs
- XmlBinaryWriter.cs
- ActivityContext.cs
- AudioSignalProblemOccurredEventArgs.cs
- TokenFactoryFactory.cs
- ClientSettingsSection.cs
- Effect.cs
- XmlUTF8TextReader.cs
- GcHandle.cs
- RowsCopiedEventArgs.cs
- RTLAwareMessageBox.cs
- ContextMenu.cs
- VariableAction.cs
- OleDbError.cs
- TextTreeDeleteContentUndoUnit.cs
- Overlapped.cs
- SessionIDManager.cs
- UnionExpr.cs
- HttpRuntimeSection.cs
- RowParagraph.cs
- WebServiceClientProxyGenerator.cs
- DataKeyArray.cs
- Point3D.cs
- ModelItemDictionary.cs
- IntPtr.cs
- WriteTimeStream.cs
- ListControl.cs
- RSAOAEPKeyExchangeFormatter.cs
- DebugHandleTracker.cs
- Substitution.cs
- DesignBinding.cs
- CallSiteOps.cs
- DiagnosticStrings.cs
- MenuScrollingVisibilityConverter.cs
- DataServiceHostWrapper.cs
- DescriptionAttribute.cs
- ValueUtilsSmi.cs
- sqlstateclientmanager.cs
- SafeThreadHandle.cs
- GridViewColumnCollectionChangedEventArgs.cs
- UIElementAutomationPeer.cs
- WindowsFormsSectionHandler.cs
- UTF7Encoding.cs