gpt4 book ai didi

c# - 当焦点位于文本框的自动完成框时禁用按键事件

转载 作者:行者123 更新时间:2023-11-30 20:04:34 25 4
gpt4 key购买 nike

在我的项目中有一个表单 mainForm,其中有两个文本框 txtUserNametxtPassword 还有一个按钮 btnLogin

我已经给出了以下 txtUserName 属性:

txtUserName 属性

AutoCompleteCustomSource - Collection
--> Administrator
--> Clerk
AutoCompleteMode - Suggest
AutoCompleteSource - CustomSource

btnLogin_Click 事件

if (txtUserName.Text.Equals("Administrator") && txtPassword.Text.Equals("123"))
{
//function to access admin features
}
else if (txtUserName.Text.Equals("Clerk") && txtPassword.Text.Equals("123"))
{
//function to access clerk features
}
else
{
MessageBox.Show("Please Enter correct details", "Login Error");
}

我已经将 mainForm keypreview 设置为 true 并实现了显示 mainForm 的 keyDown 事件的功能在下面的代码中:

ma​​inForm_KeyDownEvent

if (e.KeyCode.Equals(Keys.Enter))  //Invokes whenever Enter is pressed
{
btnLogin_Click(sender,e); //login
}

现在我的问题是,每当焦点在 txtUserName 上并按下 A 时,下拉菜单就会显示选择“Administrator”(它在集合中定义,如我在以上属性)。当我在键盘上单击 Enter 时,它显示 MessageBox 而不是选择“Administrator”。我知道那是调用 mainForm 的 keydown 事件。如何禁用 keyDown 事件,当它出现在文本框下拉菜单中以便我可以按 enter 时?

编辑:
我在 public form() 中尝试了以下代码:(不工作)

InitializeComponent();
if (txtUserName.AutoCompleteMode) { /* showing red scribbles */
this.KeyDown -= mainForm_KeyDown;
}

最佳答案

您根本不应该处理 Enter 键。您可以删除 KeyDown 处理程序,而是使用 AcceptButton property of the form设置按下 Enter 时“单击”的按钮。当另一个控件已经处理了 Enter 键时,这应该“单击”按钮。

这对您的情况来说还不够,因为标准的 Windows 行为让 Enter 键按下默认按钮。例如,按 Win+R 以获取运行...对话框,开始键入 C:\Use,按向下键选择 C:\Users,按 Enter,然后看看会发生什么。

为了覆盖该行为,您需要让文本框告诉表单它将自己处理 Enter 键,以便表单不会将其发送到默认按钮。这可以通过创建派生类并覆盖 IsInputKey 来完成:

public class MyTextBox : TextBox
{
protected override bool IsInputKey(Keys keyData)
{
return base.IsInputKey(keyData) || ((keyData & ~Keys.Shift) == Keys.Enter && IsDroppedDown);
}
}

但是,TextBox 使用 SHAutoComplete function 实现自动完成, 它会自动创建一个 IAutoComplete object在幕后。无法访问该对象,因此无法创建我在 IsInputKey 中使用的 IsDroppedDown 属性。它将使用 IAutoCompleteDropDown.GetDropDownStatus 来实现, 但由于该对象不可访问,您无法(可靠地)确定是否显示下拉列表。

您需要使用内置的 AutoComplete* 属性实现自动完成,或者您需要始终抑制回车键(去掉上面IsInputKey中的&& IsDroppedDown)。

更新:此处是手动创建IAutoComplete 对象的方法。字符串 Administrator 和 Clerk 是硬编码的。 GetDropDownStatus 函数用于在下拉列表可见时禁止任何默认按钮对 Enter 的处理。欢迎反馈。

IAutoComplete.cs:

using System;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.ComTypes;

[ComImport]
[Guid("00bb2762-6a77-11d0-a535-00c04fd7d062")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[CoClass(typeof(IAutoCompleteClass))]
interface IAutoComplete
{
void Init(HandleRef hwndEdit, IEnumString punkACL, string pwszRegKeyPath, string pwszQuickComplete);
void Enable(bool fEnable);
}

IAutoComplete2.cs:

using System;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.ComTypes;

[Guid("EAC04BC0-3791-11d2-BB95-0060977B464C")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IAutoComplete2
{
void Init(HandleRef hwndEdit, IEnumString punkACL, string pwszRegKeyPath, string pwszQuickComplete);
void Enable(bool fEnable);
void SetOptions(AutoCompleteOptions dwFlag);
AutoCompleteOptions GetOptions();
};

AutoCompleteOptions.cs:

using System;

[Flags]
enum AutoCompleteOptions : int
{
None = 0x00,
AutoSuggest = 0x01,
AutoAppend = 0x02,
Search = 0x04,
FilterPrefixes = 0x08,
UseTab = 0x10,
UpDownKeyDropsList = 0x20,
RtlReading = 0x40,
WordFilter = 0x80,
NoPrefixFiltering = 0x100,
}

IAutoCompleteDropDown.cs:

using System;
using System.Runtime.InteropServices;
using System.Text;

[Guid("3CD141F4-3C6A-11d2-BCAA-00C04FD929DB")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IAutoCompleteDropDown
{
void GetDropDownStatus(out AutoCompleteDropDownFlags dwFlags, out StringBuilder wszString);
void ResetEnumerator();
}

AutoCompleteDropDownFlags.cs:

using System;

[Flags]
enum AutoCompleteDropDownFlags : int
{
None = 0x00,
Visible = 0x01
}

IAutoCompleteClass.cs:

using System;
using System.Runtime.InteropServices;

[ComImport]
[Guid("00BB2763-6A77-11D0-A535-00C04FD7D062")]
class IAutoCompleteClass
{
}

枚举字符串.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.ComTypes;

class EnumString : IEnumString
{
const int E_INVALIDARG = unchecked((int)0x80070057);
const int S_OK = 0;
const int S_FALSE = 1;

int current;
string[] strings;

public EnumString(IEnumerable<string> strings)
{
this.current = 0;
this.strings = strings.ToArray();
}

public void Clone(out IEnumString ppenum)
{
ppenum = new EnumString(strings);
}

public int Next(int celt, string[] rgelt, IntPtr pceltFetched)
{
if (celt < 0)
return E_INVALIDARG;

int num = 0;
while (current < strings.Length && celt != 0)
{
rgelt[num] = strings[current];
current++;
num++;
celt--;
}

if (pceltFetched != IntPtr.Zero)
Marshal.WriteInt32(pceltFetched, num);

if (celt != 0)
return S_FALSE;

return S_OK;
}

public void Reset()
{
current = 0;
}

public int Skip(int celt)
{
if (celt < 0)
return E_INVALIDARG;

if (strings.Length - current > celt)
{
current = strings.Length;
return S_FALSE;
}

current += celt;
return S_OK;
}
}

MyTextBox.cs:

using System;
using System.Runtime.InteropServices;
using System.Text;
using System.Windows.Forms;

public class MyTextBox : TextBox
{
IAutoComplete2 autoComplete;
IAutoCompleteDropDown autoCompleteDropDown;

public bool IsDroppedDown
{
get
{
if (autoCompleteDropDown == null)
return false;

AutoCompleteDropDownFlags dwFlags;
StringBuilder wszString;
autoCompleteDropDown.GetDropDownStatus(out dwFlags, out wszString);
return (dwFlags & AutoCompleteDropDownFlags.Visible) != AutoCompleteDropDownFlags.None;
}
}

protected override void CreateHandle()
{
base.CreateHandle();

autoComplete = (IAutoComplete2)new IAutoComplete();
autoCompleteDropDown = (IAutoCompleteDropDown)autoComplete;
autoComplete.SetOptions(AutoCompleteOptions.AutoSuggest);
autoComplete.Init(new HandleRef(this, this.Handle), new EnumString(new string[] { "Administrator", "Clerk" }), null, null);
}

protected override void DestroyHandle()
{
ReleaseAutoComplete();
base.DestroyHandle();
}

protected override void Dispose(bool disposing)
{
if (disposing)
{
ReleaseAutoComplete();
}
base.Dispose(disposing);
}

protected override bool IsInputKey(Keys keyData)
{
return base.IsInputKey(keyData) || ((keyData & ~Keys.Shift) == Keys.Enter && IsDroppedDown);
}

void ReleaseAutoComplete()
{
if (autoComplete != null)
{
Marshal.ReleaseComObject(autoComplete);
autoComplete = null;
autoCompleteDropDown = null;
}
}
}

关于c# - 当焦点位于文本框的自动完成框时禁用按键事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12759177/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com