문제

I need to programtically make settings for all items that are shown in Settings menu of windows mobile. This includes Personal, System and Connection tabs on setttings screen. Is there any API that provices access to all settings items? I am using .NET CF 2.0.

도움이 되었습니까?

해결책

All these settings should be saved in Windows Registry. You can use CERegSpy to monitor Registry changes and programmatically apply them in your .NET CF application. The following code snippet may help:

using using Microsoft.Win32;
Registry.SetValue(`PATH`, `KEY_NAME`, `VALUE`);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top