在单独的窗口中显示选定的抽认卡
本文关键字:显示 单独 窗口 | 更新日期: 2023-09-27 18:10:24
我需要找到一种方法来调用字符串选定的抽认卡到一个新的形式,但我不知道如何通过它,因为我要做的是显示单独的抽认卡在一个单独的窗口到一个标签的形式,下面的代码谢谢。
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
}
}
如果我理解正确的话(你正在使用windows窗体),你需要将参数传递给不同的窗体,以便在标签中显示。
在这种情况下,这个问题的答案应该对你有所帮助。