在单独的窗口中显示所选的闪卡

时间:2013-04-21 15:30:31

标签: c#

我需要找到一种方法来将字符串选择的闪卡调用到一个新的形式,但我不知道如何通过它,因为我想要做的是在单独的窗口中将单独的闪卡显示到一个标签中表格,代码如下谢谢。

public void FlashcardDisplaylistbox_DoubleClick(object sender, MouseEventArgs e)
{
    int index = this.FlashcardDisplaylistbox.IndexFromPoint(e.Location);
    if (index != System.Windows.Forms.ListBox.NoMatches)
    {
        // when an item in listbox is double clicked it will execute this bit of code below
        String selectedflashcard = FlashcardDisplaylistbox.SelectedItem.ToString();
        MessageBox.Show(selectedflashcard);
        MessageBox.Show(FlashcardDisplaylistbox.SelectedIndex.ToString());
        int FlashcardID = (int)Flashcards.Rows[FlashcardDisplaylistbox.SelectedIndex][0];  // this section identifies the  position of category the user clicks and converts it to a an integer
        // the flashcardID will possibly be a way to remove the desired flashcard from the database
    }
}

1 个答案:

答案 0 :(得分:1)

如果我理解正确(并且您正在使用Windows窗体),则需要将参数传递给其他表单,以便在标签中显示。

在这种情况下,this question的答案可以帮助您。