Code:
/ DotNET / DotNET / 8.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
- BinHexDecoder.cs
- SafeNativeMethods.cs
- GZipDecoder.cs
- BitHelper.cs
- WinEventQueueItem.cs
- TextLine.cs
- WSDualHttpSecurityMode.cs
- URL.cs
- EntityType.cs
- GACIdentityPermission.cs
- Context.cs
- PartialTrustHelpers.cs
- SoapMessage.cs
- CdpEqualityComparer.cs
- _ContextAwareResult.cs
- DocComment.cs
- ParameterToken.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- ConfigXmlElement.cs
- HyperLinkStyle.cs
- SqlUtils.cs
- Point3DCollectionValueSerializer.cs
- XmlSchemaParticle.cs
- MonitoringDescriptionAttribute.cs
- SmiEventSink.cs
- UInt64Converter.cs
- ContainerParaClient.cs
- ControllableStoryboardAction.cs
- WeakReference.cs
- ToolStripSplitButton.cs
- PrimitiveCodeDomSerializer.cs
- PseudoWebRequest.cs
- UnsafeNativeMethods.cs
- _AutoWebProxyScriptEngine.cs
- HandlerWithFactory.cs
- CompareValidator.cs
- XmlEventCache.cs
- odbcmetadatafactory.cs
- StateMachine.cs
- WsdlContractConversionContext.cs
- JapaneseLunisolarCalendar.cs
- SystemUdpStatistics.cs
- DllNotFoundException.cs
- SByteConverter.cs
- SchemaEntity.cs
- ImageButton.cs
- WindowsToolbar.cs
- Rijndael.cs
- DiscardableAttribute.cs
- RegexInterpreter.cs
- VectorAnimationUsingKeyFrames.cs
- BuildDependencySet.cs
- AdjustableArrowCap.cs
- BindingOperations.cs
- CacheSection.cs
- OpenTypeLayout.cs
- SecurityUtils.cs
- HttpStreamFormatter.cs
- HttpException.cs
- MenuAutoFormat.cs
- ClientTargetSection.cs
- PngBitmapEncoder.cs
- SecurityCriticalDataForSet.cs
- DeploymentSection.cs
- CodeDelegateInvokeExpression.cs
- _BasicClient.cs
- GridItemProviderWrapper.cs
- KeyValueConfigurationCollection.cs
- XPathCompileException.cs
- WindowPatternIdentifiers.cs
- TreeNodeBindingCollection.cs
- Focus.cs
- DataSourceUtil.cs
- SqlFunctions.cs
- DbConnectionPoolGroup.cs
- TextDocumentView.cs
- CornerRadius.cs
- SecurityTokenAttachmentMode.cs
- StickyNoteAnnotations.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- BinaryWriter.cs
- UnsafeNativeMethodsTablet.cs
- MemberRelationshipService.cs
- LoadedOrUnloadedOperation.cs
- StringKeyFrameCollection.cs
- ManipulationCompletedEventArgs.cs
- dbenumerator.cs
- QueueProcessor.cs
- SmiEventSink_Default.cs
- UdpSocketReceiveManager.cs
- autovalidator.cs
- TreeViewHitTestInfo.cs
- DataGridAutoFormatDialog.cs
- ItemMap.cs
- SourceFilter.cs
- ProgressBarRenderer.cs
- PartitionResolver.cs
- SystemIPGlobalProperties.cs
- MetadataCollection.cs
- DataGridViewLayoutData.cs