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
- ThreadBehavior.cs
- SmtpNegotiateAuthenticationModule.cs
- HttpProfileBase.cs
- ToolStripPanelRow.cs
- BackStopAuthenticationModule.cs
- DataGridCaption.cs
- DesignerVerb.cs
- GenericAuthenticationEventArgs.cs
- GroupByQueryOperator.cs
- AsyncSerializedWorker.cs
- WindowsToolbar.cs
- ErrorProvider.cs
- IsolationInterop.cs
- ConnectionModeReader.cs
- LogReservationCollection.cs
- NullableDoubleSumAggregationOperator.cs
- CounterCreationData.cs
- NavigateEvent.cs
- ControlBindingsCollection.cs
- CodeArrayCreateExpression.cs
- IfAction.cs
- DtdParser.cs
- TemplateColumn.cs
- ListViewTableCell.cs
- PolyLineSegment.cs
- AtomContentProperty.cs
- DesigntimeLicenseContext.cs
- StrokeNodeData.cs
- EventData.cs
- FormsAuthenticationUserCollection.cs
- LayoutUtils.cs
- KeyBinding.cs
- MissingMemberException.cs
- BufferedGraphics.cs
- shaperfactoryquerycacheentry.cs
- IDictionary.cs
- XdrBuilder.cs
- ManagementDateTime.cs
- Math.cs
- DoubleAnimationUsingPath.cs
- DoubleStorage.cs
- DebugInfoExpression.cs
- QilReference.cs
- PerformanceCounterScope.cs
- EnvelopedSignatureTransform.cs
- PeerTransportListenAddressValidatorAttribute.cs
- WebPartsSection.cs
- WebEncodingValidatorAttribute.cs
- XmlHierarchicalDataSourceView.cs
- SiteMapDataSource.cs
- ProcessModelInfo.cs
- ArraySortHelper.cs
- CodeRemoveEventStatement.cs
- ListView.cs
- IODescriptionAttribute.cs
- StateDesigner.Layouts.cs
- ValueUtilsSmi.cs
- RadioButtonFlatAdapter.cs
- XmlAttributeCollection.cs
- SqlGatherConsumedAliases.cs
- CapabilitiesRule.cs
- DoubleCollectionConverter.cs
- EventWaitHandleSecurity.cs
- StructuralType.cs
- OutputScopeManager.cs
- UriSectionData.cs
- InitializingNewItemEventArgs.cs
- CommonRemoteMemoryBlock.cs
- EntitySetBase.cs
- CharStorage.cs
- PiiTraceSource.cs
- Compiler.cs
- WorkflowCompensationBehavior.cs
- XmlDomTextWriter.cs
- SizeAnimationUsingKeyFrames.cs
- ServerIdentity.cs
- RNGCryptoServiceProvider.cs
- DescendantOverDescendantQuery.cs
- DataSvcMapFileSerializer.cs
- ProfileService.cs
- BidPrivateBase.cs
- FrameworkRichTextComposition.cs
- WindowsUpDown.cs
- SQLString.cs
- FormViewDeleteEventArgs.cs
- SystemTcpStatistics.cs
- AudienceUriMode.cs
- StyleSheet.cs
- InputElement.cs
- Transactions.cs
- PropertyGeneratedEventArgs.cs
- XmlSerializerNamespaces.cs
- FileLevelControlBuilderAttribute.cs
- ResourcePool.cs
- JoinGraph.cs
- DropDownButton.cs
- RoleServiceManager.cs
- WebSysDisplayNameAttribute.cs
- DisplayNameAttribute.cs
- RelatedView.cs