0
我嘗試在c#中保存用戶設置。在c#中保存用戶設置
我可以讀取值並將其放入文本框中,但我無法更改它。
這是我WindowsForm與文本框和保存按鈕:
namespace tool
{
public partial class Form4 : Form
{
string source = Properties.Settings.Default.Source;
public Form4()
{
InitializeComponent();
}
private void Form4_Load(object sender, EventArgs e)
{
textBox1.Text = source;
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void save_Click(object sender, EventArgs e)
{
Properties.Settings.Default.Source = source;
Properties.Settings.Default.Save();
Application.Exit();
}
}
}
這裏是我設置的圖片:
我希望有人爲理念:-)
感謝您的幫助
完蛋了:-D感謝... OMG什麼小錯^^ – Sebastian
你打敗了我。 +1 –