-1

程序员,硕士。

请帮助我......让我通过你的例子来学习。

描述:当一个单词被选中并右键单击时,该单词会显示在一个弹出窗口中。例如,输入:“巴塞罗那是我最喜欢的足球俱乐部”。

在我选择了“足球”这个词后,然后右击,这个词出现在一个弹出菜单“这就是足球”中。

当我在弹出菜单中单击这些单词时,它会将 INPUT 中的单词替换为弹出菜单中的单词,就像这个例子一样。

输出:巴塞罗那是我最喜欢的,这是足球俱乐部。”

请帮我。

我真的对 ContextMenu 视而不见..

这是代码:

ContextMenu contextMenu = new ContextMenu();
private EventHandler menuHandler;

public Form1()
{
    InitializeComponent();
    menuHandler = new System.EventHandler(this.Menu_Click);// what's menu_click?
}

private void Menu_Click(object sender, EventArgs e)
{
    richTextBox1.SelectionFont = new Font("Times New Roman", 12);
    richTextBox1.SelectionColor = Color.Black;

    richTextBox1.SelectedText = ((MenuItem)sender).Text;
}

private void richTextBox1_MouseDown(object sender, MouseEventArgs e)
{
   try
   {
      if (e.Button == MouseButtons.Right)
      {
         Point point = new Point(e.X, e.Y);
         int index = richTextBox1.GetCharIndexFromPosition(point);
         textBox1.Text = Convert.ToString(index);

         int length = 1;

         if (!Char.IsWhiteSpace(richTextBox1.Text[index]))
         {
             while (index > 0 && !Char.IsWhiteSpace(richTextBox1.Text[index - 1]))
             { index--; length++; }

              while (index + length < richTextBox1.Text.Length &&
                  !Char.IsWhiteSpace(richTextBox1.Text[index + length]) &&
                  (!Char.IsPunctuation(richTextBox1.Text[index + length]) ||
                  richTextBox1.Text[index + length] == Char.Parse("'"))
              ) length++;

              richTextBox1.SelectionStart = index;
              richTextBox1.SelectionLength = length;
              contextMenu.MenuItems.Clear(); // error here
              contextMenu.MenuItems.Add("This is "+richTextBox1.SelectedText, menuHandler); //error here
              //What's next Sir?
             }
         }
     }
  }

//下一个...,我真的不知道。

它不起作用。请帮忙 :) :) :)

4

2 回答 2

0

你只是用下面的东西来显示菜单

contextMenu1.Show(richTextBox1, point);
于 2013-03-16T04:28:37.930 回答
0

显示 contextMenu 添加

richTextBox1.ContextMenu = contextMenu ; 

重新初始化或在 Form1() 中

于 2013-03-16T04:58:49.773 回答