本文介绍了单击列表框中的项目时如何打开文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在列表框中单击项目时打开一个特定文件..谢谢...

i want to open a particular file on click of item in List box..thanks...

推荐答案

switch (ListBox1.SelectedIndex) 
{
	case 0:
		//open file 1
		//Process.Start("notepad");
		break;
	case 1:
		//open file 2
		//Process.Start("calc");
		break;
	default:
		break;
	//do nothing
}


listBox2.MouseDoubleClick += new MouseButtonEventHandler(listBox2_MouseDoubleClick);


这是实现它的功能:


This is the function to implement it:

void listBox2_MouseDoubleClick(object sender, MouseButtonEventArgs e)
{
    ListBoxItem item =(ListBoxItem)listBox2.SelectedItem;
    Process.Start(item.Content.ToString());
}


这篇关于单击列表框中的项目时如何打开文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 16:16