ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = true;
startInfo.UseShellExecute = false;
startInfo.FileName = @".\ext.exe";
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
int i=0;
string item = listView1.Items[i++].Text;
startInfo.Arguments = "--logfile=duration_output.txt " + (item);
我想列出所有項目作爲string[]
,但然後應用程序給我一個空的日誌文件。
當我使用簡單的string item = listView1.Items[i++].Text
時,它只給出一個輸出中的第一個文件。如何將所有項目從listview中獲取到字符串[]?
這怎麼可能呢?
找不到源類型爲「System.Windows.Forms.ListView.ListViewItemCollection」的查詢模式的實現。 '選擇'未找到。考慮明確指定範圍變量'item'的類型。 – user830054
好了,現在它正在工作,但只能識別前4項 – user830054
@ user830054:那麼您的列表視圖中只能有4個項目。這是WinForms還是WPF? – user7116