Курсовая работа: Разработка приложения клиента электронной почты
StreamWriter sw = new StreamWriter (dir1+ "\\messages\\profile\\porfile.txt"); //сохраняем данные почтового ящика
{
sw.WriteLine(Form1 .countMes.ToString());
sw.WriteLine(POP3.Text);
sw.WriteLine(UserName.Text);
sw.WriteLine(Pass.Text);
sw.WriteLine(SMTP.Text);
}
// FileStream myStream = File.Create("F:\\messages\\profile\\porfile.txt");
string str = Form1 .countMes.ToString();
sw.Close();
}
private void Cancel_Click(object sender, EventArgs e) //отмена
{
this .Hide();
}
private void FormSettings_FormClosing(object sender, FormClosingEventArgs e) //при закрытии формы
{ //отменятся все изменения и форма скрывается
e.Cancel = true ;
this .Hide();
}
private void Save_Click_1(object sender, EventArgs e) //сохранение профиля
{
EditProfile();
}
private void Ok_Click(object sender, EventArgs e) //при нажатии клавиши Ок сохраняется профиль
{//и форма сворачивается
EditProfile();
this .Hide();