Question

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.

Was it helpful?

Solution

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`);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top