我有一个带有富文本框的表单,我想在其中执行以下操作:
当用户按空格键按钮时(目前我正在使用keydown事件但是想要使用按键事件但它不提供e.keycode),应该调用一个函数来实现这个逻辑:
要获取最后一个文字,并通过富文本框的文本循环,以便在富文本框中查找其出现次数。
到目前为止,我所做的是:
private void textContainer_rtb_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Space)
{
String abc = this.textContainer_rtb.Text.Split(' ').Last();
chkWordRepeat(abc);
}
}
public void chkWordRepeat(String lastWordToFind)
{
int count = new Regex(lastWordToFind).Matches(this.textContainer_rtb.Text.Split(' ').ToString()).Count;
MessageBox.Show("Word: " + lastWordToFind + "has come: " + count + "times");
}
如果上述逻辑是否正确,请告诉我如何将此逻辑与空格键的按键事件相关联?如果没有那么请帮我实施!
提前致谢。
答案 0 :(得分:1)
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == ' ')
MessageBox.Show("space pressed");
}
答案 1 :(得分:0)
我的意见是:
public Dictionary<string, int> data;
private void textContainer_rtb_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Space)
{
String abc = this.textContainer_rtb.Text.Split(' ').Last();
chkWordRepeat(abc);
}
}
public void chkWordRepeat(string wrd)
{
bool present = false;
foreach (string key in data.Keys)
if (wrd == key)
{
present = true;
data[wrd]++;
}
if (!present)
data.Add(wrd, 1);
}