π¨πΌπ»κ°λ°/C#
C# - μ€μ κ° μ μ₯νκ³ λΆλ¬μ€κΈ°
Janger
2022. 9. 26. 19:52
728x90
νλ‘μ νΈ -> νλ‘μ νΈ.μμ± -> μ€μ μμ μ¬μ§ μ²λΌ μ μ₯ νκ³ μ νλ λ³μλ₯Ό λ§λ λ€.
private void Form1_Load(object sender, EventArgs e)
{
tbIpAdress.Text = Properties.Settings.Default.tbIpAdress_Value;
tbCarWashSerial.Text = Properties.Settings.Default.tbCarWashSerial_Value;
}
μμ μ½λμ²λΌ μ½μ΄ μ€κΈ°λ§ νλ©΄ λλ€.
private void btnSave_Click(object sender, EventArgs e)
{
Properties.Settings.Default.tbIpAdress_Value = tbIpAdress.Text;
Properties.Settings.Default.tbCarWashSerial_Value = tbCarWashSerial.Text;
Properties.Settings.Default.Save();
MessageBox.Show("μ€μ μ μ₯ μλ£");
}
λ³μμ κ°μ λ£μλλ λ§€μ° κ°λ¨νλ€.
μΆμ²:
https://gdlseed.tistory.com/17
C# μ€μ κ° μ μ₯ νκΈ° - λ³λ νμΌ μμ± X
νλ‘μ νΈ -> νλ‘μ νΈ.μμ± -> μ€μ μμ μ¬μ§ μ²λΌ μ μ₯ νκ³ μ νλ λ³μλ₯Ό λ§λ λ€. private void Form1_Load(object sender, EventArgs e) { tbIpAdress.Text = Properties.Settings.Default.tbIpAdress_Value;..
gdlseed.tistory.com
728x90