It turns out that DAP supports backlight control on this tablet. I managed to get it working by adding DapServiceCS.dll and this code:
DsLightSensor lightSensor = new DsLightSensor();
if (DapServices.DS_EXECUTION_OK ==
DapServices.DapService(DapServicesCode.DS_GET_LIGHT_SENSOR, lightSensor))
{
lightSensor.dwIntensity = hScrollBarIntensity.Value;
DapServices.DapService(DapServicesCode.DS_SET_LIGHT_SENSOR, lightSensor);
}
source
share