[DllImport("user32", EntryPoint = "SystemParametersInfo")]
        public static extern int SystemParametersInfoGetMouseSpeed(int uAction, int uParam, ref int lpvParam, int fuWinIni);
        [DllImport("user32", EntryPoint = "SystemParametersInfo")]
        public static extern int SystemParametersInfoSetMouseSpeed(int uAction, int uParam, int lpvParam, int fuWinIni);
SystemParametersInfoGetMouseSpeed(),SystemParametersInfoSetMouseSpeed()相应的参数要怎么设置使用才能实现改变鼠标灵敏度??