次のコードから、listViewアイテムをテキストファイルに保存しようとしています。しかし、listViewの項目をテキストファイルに保存してもエラーは発生しません。私のlistViewは単一の列を持っています。このコードで私が紛失しているものを特定してください。ListViewアイテムをテキストファイルに保存する#
private void saveAttemptsStatus()
{
var sw = new System.IO.StreamWriter("D:\\AlphaNumDataSum_" + txt_LUsername.Text);
foreach (ListViewItem item in list_Count.Items)
{
sw.Write(item + "\r\n");
}
sw.Close();
}
private void CountAttemps()
{
int numberOfItems = list_Count.Items.Count;
if (numberOfItems != 10)
{
if (username == txt_LUsername.Text && password == txt_LPassword.Text)
{
list_Count.Items.Add("correct");
txt_LUsername.Text = string.Empty;
txt_LPassword.Text = string.Empty;
}
else
{
list_Count.Items.Add("inCorrect");
txt_LUsername.Text = string.Empty;
txt_LPassword.Text = string.Empty;
}
}
else
{
saveAttemptsStatus();
MessageBox.Show("Thank You!");
}
}
saveAttemptsStatus関数を呼び出すコードを入力してください。 –
@ShaiAharoni私はそのコードを追加しました。 – Sumi