Code:
/ 4.0 / 4.0 / 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. /// ///// 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
- NegatedCellConstant.cs
- Vector3DCollectionValueSerializer.cs
- CursorInteropHelper.cs
- MetadataItem.cs
- ArgumentNullException.cs
- Size3D.cs
- StylusDevice.cs
- ToolZone.cs
- RelationshipFixer.cs
- AnnotationStore.cs
- FilterException.cs
- SqlUtils.cs
- MultitargetUtil.cs
- SerializableAttribute.cs
- BuildResultCache.cs
- DiscreteKeyFrames.cs
- OrCondition.cs
- MatrixAnimationBase.cs
- ApplicationSecurityManager.cs
- ResXDataNode.cs
- mil_commands.cs
- SmiEventStream.cs
- SafeArrayTypeMismatchException.cs
- CacheDependency.cs
- InheritanceAttribute.cs
- DataGridViewLinkColumn.cs
- SQLChars.cs
- StylusPlugin.cs
- TemplateControlBuildProvider.cs
- JsonFormatReaderGenerator.cs
- HttpConfigurationSystem.cs
- FolderLevelBuildProviderCollection.cs
- SqlBulkCopyColumnMapping.cs
- CodeAttributeArgument.cs
- LogAppendAsyncResult.cs
- DataGridViewImageCell.cs
- ConfigurationStrings.cs
- HyperLinkColumn.cs
- MetadataItemEmitter.cs
- FileDialogPermission.cs
- AttributeAction.cs
- EndpointDiscoveryMetadataCD1.cs
- StylusButtonEventArgs.cs
- RowBinding.cs
- BasicBrowserDialog.designer.cs
- ShapeTypeface.cs
- BamlVersionHeader.cs
- ConnectionDemuxer.cs
- SmtpException.cs
- AnimationClock.cs
- NativeCppClassAttribute.cs
- DbConnectionPoolCounters.cs
- SamlDelegatingWriter.cs
- CustomSignedXml.cs
- XmlTextAttribute.cs
- WorkflowRuntimeServiceElement.cs
- ConnectionPointCookie.cs
- SurrogateDataContract.cs
- WsdlEndpointConversionContext.cs
- PersonalizationAdministration.cs
- InvalidAsynchronousStateException.cs
- CmsInterop.cs
- InkCanvasAutomationPeer.cs
- EdmFunctionAttribute.cs
- ResolvedKeyFrameEntry.cs
- FormatterServices.cs
- DoubleUtil.cs
- ErrorReporting.cs
- MultipleViewProviderWrapper.cs
- SqlMultiplexer.cs
- XmlElementAttributes.cs
- ThaiBuddhistCalendar.cs
- ConnectionManagementElementCollection.cs
- Frame.cs
- WebPartConnectVerb.cs
- SpinLock.cs
- CompModSwitches.cs
- ListViewGroupCollectionEditor.cs
- ResXBuildProvider.cs
- UnsafeNativeMethods.cs
- SafeCloseHandleCritical.cs
- Gdiplus.cs
- AuthenticationModuleElement.cs
- ScrollPatternIdentifiers.cs
- ToolStripItemImageRenderEventArgs.cs
- DataStreams.cs
- WmlCalendarAdapter.cs
- TextBoxAutoCompleteSourceConverter.cs
- DiscoveryDefaults.cs
- DecimalAnimationBase.cs
- XmlSerializerNamespaces.cs
- SecurityException.cs
- MemoryFailPoint.cs
- AuthenticationSchemesHelper.cs
- ClientFormsIdentity.cs
- AvtEvent.cs
- SecurityProtocol.cs
- PropertyChangedEventArgs.cs
- ContextMenuStrip.cs
- ObjectListCommandsPage.cs