2016년 8월 10일 수요일

C# 레지스트리에 설정파일 저장 변경 로드 테스트

먼저 Regedit 에서

HKEY_CURRENT_USER\SOFTWARE\ZTest 로 키를 생성

(키 생성하면 폴더가 생성됨)

안에 DogName 와 Age 를 스트링으로 생성한다.


void Load()
{
String Keypath = "Software\\ZTest";
RegistryKey regkey = Registry.CurrentUser.OpenSubKey(Keypath);
if (regkey != null)
{
Path = regkey.Name;
item1 = (string)regkey.GetValue("DogName");
item2 = (string)regkey.GetValue("Age");
}
}


void Save()
{
String Keypath = "Software\\ZTest";
RegistryKey regkey = Registry.CurrentUser.OpenSubKey(Keypath);
if (regkey != null)
{
Path = regkey.Name;
regkey.SetValue("DogName","Not mimi");
regkey.SetValue("Age","not 12");
}
}

댓글 없음:

댓글 쓰기