Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / InputLangChangeEvent.cs / 1 / InputLangChangeEvent.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 InputLanguageChangedEventArgs : EventArgs { ////// Provides data for the ////// event. /// /// /// The input language. /// private readonly InputLanguage inputLanguage; ////// /// The culture of the input language. /// private readonly CultureInfo culture; ////// /// The charSet associated with the new input language. /// private readonly byte charSet; /** * @deprecated. Use the other constructor instead. */ ////// /// /// public InputLanguageChangedEventArgs(CultureInfo culture, byte charSet) { this.inputLanguage = System.Windows.Forms.InputLanguage.FromCulture(culture); this.culture = culture; this.charSet = charSet; } ////// Initializes a new instance of the ///class with the /// specified locale and character set. /// /// /// public InputLanguageChangedEventArgs(InputLanguage inputLanguage, byte charSet) { this.inputLanguage = inputLanguage; this.culture = inputLanguage.Culture; this.charSet = charSet; } ////// Initializes a new instance of the ///class with the specified input language and /// character set. /// /// /// public InputLanguage InputLanguage { get { return inputLanguage; } } ////// Gets the input language. /// ////// /// public CultureInfo Culture { get { return culture; } } ////// Gets the locale of the input language. /// ////// /// public byte CharSet { get { return charSet; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved./// Gets the character set associated with the new input language. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WorkflowElementDialog.cs
- AnnotationDocumentPaginator.cs
- StringWriter.cs
- FixedSOMFixedBlock.cs
- DnsPermission.cs
- NestPullup.cs
- SizeAnimationClockResource.cs
- VisualCollection.cs
- AppSecurityManager.cs
- ProcessInputEventArgs.cs
- AbandonedMutexException.cs
- List.cs
- ValueTable.cs
- AttributeProviderAttribute.cs
- SqlWebEventProvider.cs
- CustomError.cs
- NavigatorInput.cs
- SQLInt32Storage.cs
- Internal.cs
- ComponentCache.cs
- LocalizableAttribute.cs
- CryptoApi.cs
- TranslateTransform.cs
- KeyedCollection.cs
- SystemTcpConnection.cs
- SqlProviderManifest.cs
- MarkupObject.cs
- Binding.cs
- ServiceProviders.cs
- DataIdProcessor.cs
- CodeNamespace.cs
- Int64AnimationBase.cs
- ConstraintStruct.cs
- XmlBinaryReader.cs
- GetLedgerEntryForRecipientRequest.cs
- SqlXml.cs
- ListDataBindEventArgs.cs
- Helpers.cs
- PersistStreamTypeWrapper.cs
- Itemizer.cs
- MarkerProperties.cs
- ExpandSegment.cs
- ReflectEventDescriptor.cs
- BamlTreeUpdater.cs
- OracleCommandSet.cs
- ObjectCloneHelper.cs
- DynamicRouteExpression.cs
- Missing.cs
- LineProperties.cs
- SR.cs
- SiteMapDataSource.cs
- ApplicationContext.cs
- ExpressionLexer.cs
- GetPageCompletedEventArgs.cs
- KeyTimeConverter.cs
- GatewayIPAddressInformationCollection.cs
- Base64Encoding.cs
- ParameterRetriever.cs
- ImageAttributes.cs
- UserControl.cs
- SqlCacheDependencySection.cs
- ChangesetResponse.cs
- HiddenField.cs
- TableRowCollection.cs
- CheckBoxAutomationPeer.cs
- DataContractJsonSerializer.cs
- SafeTimerHandle.cs
- ContextConfiguration.cs
- MetaData.cs
- ImportedNamespaceContextItem.cs
- TypeKeyValue.cs
- CopyOfAction.cs
- QualificationDataItem.cs
- FlowDocumentReader.cs
- _ChunkParse.cs
- XmlSchemaElement.cs
- EntityContainer.cs
- PenCursorManager.cs
- FocusManager.cs
- DataServiceQuery.cs
- ViewPort3D.cs
- DataRowView.cs
- ConsumerConnectionPoint.cs
- ObjectKeyFrameCollection.cs
- InkCanvasAutomationPeer.cs
- ConnectionPoint.cs
- DataGridLengthConverter.cs
- ExeConfigurationFileMap.cs
- TableCellCollection.cs
- MultipartIdentifier.cs
- CodeNamespace.cs
- TogglePattern.cs
- TextDecorationLocationValidation.cs
- BinaryCommonClasses.cs
- Scene3D.cs
- CustomErrorsSectionWrapper.cs
- DocComment.cs
- EdmValidator.cs
- HttpProfileBase.cs
- LocatorManager.cs