Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / InputLangChangeRequestEvent.cs / 1305376 / InputLangChangeRequestEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using System.Runtime.InteropServices; using System.Diagnostics; using System; using System.Drawing; using System.Globalization; using System.Windows.Forms; using System.ComponentModel; using Microsoft.Win32; ////// /// public class InputLanguageChangingEventArgs : CancelEventArgs { ////// Provides data for the ////// event. /// /// /// The requested input language. /// private readonly InputLanguage inputLanguage; ////// /// The locale of the requested input langugage. /// private readonly CultureInfo culture; ////// /// Set to true if the system default font supports the character /// set required for the requested input language. /// private readonly bool sysCharSet; /** * @deprecated Should use the new constructor instead. */ ////// /// /// public InputLanguageChangingEventArgs(CultureInfo culture, bool sysCharSet) { this.inputLanguage = System.Windows.Forms.InputLanguage.FromCulture(culture); this.culture = culture; this.sysCharSet = sysCharSet; } ////// Initializes a new instance of the ///class with the /// specified locale, character set, and acceptance. /// /// /// public InputLanguageChangingEventArgs(InputLanguage inputLanguage, bool sysCharSet) { if (inputLanguage == null) throw new ArgumentNullException("inputLanguage"); this.inputLanguage = inputLanguage; this.culture = inputLanguage.Culture; this.sysCharSet = sysCharSet; } ////// Initializes a new instance of the ///class with the /// specified input language, character set, and acceptance of /// a language change. /// /// /// public InputLanguage InputLanguage { get { return inputLanguage; } } ////// Gets the requested input language. /// ////// /// public CultureInfo Culture { get { return culture; } } ////// Gets the locale of the requested input language. /// ////// /// public bool SysCharSet { get { return sysCharSet; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets a value indicating whether the system default font supports the character /// set required for the requested input language. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SamlSubjectStatement.cs
- PopupRoot.cs
- RMEnrollmentPage2.cs
- _NativeSSPI.cs
- HashHelper.cs
- ThicknessAnimation.cs
- NavigatingCancelEventArgs.cs
- FamilyMapCollection.cs
- ResourceWriter.cs
- UIElementCollection.cs
- dbdatarecord.cs
- ToolStripAdornerWindowService.cs
- GroupItem.cs
- Overlapped.cs
- DesignerView.Commands.cs
- XmlExtensionFunction.cs
- TypeSystem.cs
- DataColumnChangeEvent.cs
- CodeDirectionExpression.cs
- PageContentCollection.cs
- OdbcCommand.cs
- Oci.cs
- XmlEnumAttribute.cs
- CodeExpressionStatement.cs
- Stroke2.cs
- Inline.cs
- StateRuntime.cs
- basevalidator.cs
- BufferedReadStream.cs
- TextPenaltyModule.cs
- AttachmentCollection.cs
- UriTemplateDispatchFormatter.cs
- KeyTime.cs
- HGlobalSafeHandle.cs
- CodeDefaultValueExpression.cs
- ExternalDataExchangeClient.cs
- PropertyInfoSet.cs
- XmlSchemaValidator.cs
- CryptographicAttribute.cs
- EntityObject.cs
- CroppedBitmap.cs
- ELinqQueryState.cs
- sqlstateclientmanager.cs
- NamedPipeAppDomainProtocolHandler.cs
- Rect.cs
- UIElement3DAutomationPeer.cs
- listitem.cs
- BitmapCodecInfo.cs
- XmlSchemaType.cs
- TemplatedAdorner.cs
- SqlDataSourceRefreshSchemaForm.cs
- EnumerationRangeValidationUtil.cs
- ToolStripRenderer.cs
- MarshalByValueComponent.cs
- DurableEnlistmentState.cs
- PolygonHotSpot.cs
- DateTimeConstantAttribute.cs
- PropertyTabChangedEvent.cs
- odbcmetadatacolumnnames.cs
- GetLedgerRequest.cs
- TextParagraphCache.cs
- Encoding.cs
- PropertyItem.cs
- OleDbRowUpdatingEvent.cs
- UnSafeCharBuffer.cs
- ECDsaCng.cs
- elementinformation.cs
- SessionStateSection.cs
- Label.cs
- PeerMaintainer.cs
- OpenTypeLayoutCache.cs
- AppliedDeviceFiltersEditor.cs
- BindingParameterCollection.cs
- Timer.cs
- OciLobLocator.cs
- XsdBuilder.cs
- DataGridViewSelectedRowCollection.cs
- SiteMapNodeItem.cs
- MediaPlayerState.cs
- FormsAuthentication.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- AnnotationComponentManager.cs
- HScrollBar.cs
- FixedSOMContainer.cs
- OperationCanceledException.cs
- ExecutionScope.cs
- UndirectedGraph.cs
- MetadataArtifactLoader.cs
- VirtualizingPanel.cs
- SafeThreadHandle.cs
- EntityClassGenerator.cs
- TableProviderWrapper.cs
- Publisher.cs
- EventSinkHelperWriter.cs
- ListenerAdapterBase.cs
- CompilerWrapper.cs
- TypeInfo.cs
- FontEmbeddingManager.cs
- COM2PictureConverter.cs
- XmlAnyElementAttribute.cs