---------- 2020-12-24 IMEMode: Text1.IMEMode = 0 NoControl (沒改變,預設值) Text1.IMEMode = 1 On (換成中文輸入) Text1.IMEMode = 2 Off (換成英文輸入) Text1.IMEMode = 3 Disable (關閉中文輸入的功能,也就是只能做英文輸入。) Alpha 8 Alphanumeric single-byte characters(SBC). This setting is valid for Korean and Japanese IME only. AlphaFull 7 Alphanumeric double-byte characters. This setting is valid for Korean and Japanese IME only. Close 11 IME closed. This setting is valid for Chinese IME only. Disable 3 The IME is disabled. With this setting, the users cannot turn the IME on from the keyboard, and the IME floating window is hidden. Hangul 10 Hangul SBC. This setting is valid for the Korean IME only. HangulFull 9 Hangul DBC. This setting is valid for the Korean IME only. Hiragana 4 Hiragana DBC. This setting is valid for the Japanese IME only. Inherit -1 Inherits the IME mode of the parent control. Katakana 5 Katakana DBC. This setting is valid for the Japanese IME only. KatakanaHalf 6 Katakana SBC. This setting is valid for the Japanese IME only. NoControl 0 None (Default). Off 2 The IME is off. This mode indicates that the IME is off, meaning that the object behaves the same as English entry mode. This setting is valid for Japanese, Simplified Chinese, and Traditional Chinese IME only. On 1 The IME is on. This value indicates that the IME is on and characters specific to Chinese or Japanese can be entered. This setting is valid for Japanese, Simplified Chinese, and Traditional Chinese IME only. OnHalf 12 IME on HalfShape. This setting is valid for Chinese IME only. #region Assembly System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 // C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6\System.Windows.Forms.dll #endregion using System.Runtime.InteropServices; namespace System.Windows.Forms { // // Summary: // Specifies a value that determines the Input Method Editor (IME) status of an // object when the object is selected. [ComVisible(true)] public enum ImeMode { // // Summary: // Inherits the IME mode of the parent control. Inherit = -1, // // Summary: // None (Default). NoControl = 0, // // Summary: // The IME is on. This value indicates that the IME is on and characters specific // to Chinese or Japanese can be entered. This setting is valid for Japanese, Simplified // Chinese, and Traditional Chinese IME only. On = 1, // // Summary: // The IME is off. This mode indicates that the IME is off, meaning that the object // behaves the same as English entry mode. This setting is valid for Japanese, Simplified // Chinese, and Traditional Chinese IME only. Off = 2, // // Summary: // The IME is disabled. With this setting, the users cannot turn the IME on from // the keyboard, and the IME floating window is hidden. Disable = 3, // // Summary: // Hiragana DBC. This setting is valid for the Japanese IME only. Hiragana = 4, // // Summary: // Katakana DBC. This setting is valid for the Japanese IME only. Katakana = 5, // // Summary: // Katakana SBC. This setting is valid for the Japanese IME only. KatakanaHalf = 6, // // Summary: // Alphanumeric double-byte characters. This setting is valid for Korean and Japanese // IME only. AlphaFull = 7, // // Summary: // Alphanumeric single-byte characters(SBC). This setting is valid for Korean and // Japanese IME only. Alpha = 8, // // Summary: // Hangul DBC. This setting is valid for the Korean IME only. HangulFull = 9, // // Summary: // Hangul SBC. This setting is valid for the Korean IME only. Hangul = 10, // // Summary: // IME closed. This setting is valid for Chinese IME only. Close = 11, // // Summary: // IME on HalfShape. This setting is valid for Chinese IME only. OnHalf = 12 } }