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
- ColorPalette.cs
- AccessedThroughPropertyAttribute.cs
- AutoGeneratedFieldProperties.cs
- Interlocked.cs
- BindingCollection.cs
- GenericAuthenticationEventArgs.cs
- Table.cs
- SafeSystemMetrics.cs
- AssociationType.cs
- _UriSyntax.cs
- UrlMappingCollection.cs
- Matrix3D.cs
- DataObjectAttribute.cs
- TdsParserStateObject.cs
- PtsHost.cs
- StringFunctions.cs
- EntityContainerEmitter.cs
- ControlType.cs
- KerberosSecurityTokenProvider.cs
- ApplicationSecurityInfo.cs
- StreamInfo.cs
- LinkedList.cs
- NavigationEventArgs.cs
- CommandDevice.cs
- GroupBox.cs
- Convert.cs
- AddInBase.cs
- StreamGeometryContext.cs
- DataGridViewCellParsingEventArgs.cs
- InplaceBitmapMetadataWriter.cs
- UriScheme.cs
- TCEAdapterGenerator.cs
- SystemDiagnosticsSection.cs
- Debug.cs
- TabRenderer.cs
- CodeEntryPointMethod.cs
- StorageModelBuildProvider.cs
- DataPagerFieldItem.cs
- VirtualPathUtility.cs
- WindowsScrollBar.cs
- ComplexPropertyEntry.cs
- SafeCertificateContext.cs
- DoubleAverageAggregationOperator.cs
- PrintingPermissionAttribute.cs
- BaseDataBoundControl.cs
- UserControl.cs
- CollectionTraceRecord.cs
- Enum.cs
- xdrvalidator.cs
- AttributeProviderAttribute.cs
- PropertyValueUIItem.cs
- WinCategoryAttribute.cs
- HttpChannelHelpers.cs
- _LoggingObject.cs
- MatrixCamera.cs
- Parallel.cs
- GenericTextProperties.cs
- PageBreakRecord.cs
- AstNode.cs
- LostFocusEventManager.cs
- SHA1Cng.cs
- RadialGradientBrush.cs
- DBSqlParserTableCollection.cs
- CalendarAutomationPeer.cs
- PtsCache.cs
- ArgumentNullException.cs
- ConstraintConverter.cs
- MyContact.cs
- ProjectionPlanCompiler.cs
- StreamWithDictionary.cs
- RuleProcessor.cs
- odbcmetadatacolumnnames.cs
- SystemTcpConnection.cs
- PopOutPanel.cs
- MLangCodePageEncoding.cs
- Point4D.cs
- XmlSchemaFacet.cs
- CheckBoxBaseAdapter.cs
- TreeNode.cs
- WebPartDeleteVerb.cs
- DiscoveryInnerClientAdhoc11.cs
- ManagementInstaller.cs
- ClockGroup.cs
- Bezier.cs
- ContainerVisual.cs
- TripleDES.cs
- CopyOnWriteList.cs
- StyleSheet.cs
- URI.cs
- AssemblyEvidenceFactory.cs
- ExpressionNode.cs
- XmlException.cs
- XmlDataSourceView.cs
- VectorConverter.cs
- LocalFileSettingsProvider.cs
- Parameter.cs
- TextSerializer.cs
- DependencyProperty.cs
- DbConnectionStringCommon.cs
- ADConnectionHelper.cs