I wrote this code behind a button
but I got an error and I dont know what is this... Any one knows "Control does not support transparent background colors"
Code:
"
colordialog.showdialog();
File.WriteAllText("dlg.txt",this.BackColor.Name);
"
And I wrote this code in Form Load as well
"
this.BackColor = Color.FromName(File.ReadAllText("dlg.txt"));
"
Comment