so, i want to save my listView Items as i save Location or Size of window in the Project settings.
for example:
private void Form1_Load(object sender, EventArgs e)
{
this.Location = Properties.Settings.Default.MyLoc;
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
Properties.Settings.Default.MyLoc = this.Location;
}
how can i do that? if you can write me a code its will be grate, if not can you just explain how? thanks!