用C# 在wince 中 如何发出声音,设置系统时间呢?

sxfzdw   2007-6-7 10:54 楼主
用C# 在wince 中 如何发出声音,设置系统时间呢?请高手指教!

回复评论 (3)

谁有Wince API 开发方面的资料?
点赞  2007-6-7 11:09
Wince API网上搜索一下很多的.
点赞  2007-11-12 10:21
[StructLayout(LayoutKind.Sequential)]
        public struct SystemTime
        {
            public ushort wYear;
            public ushort wMonth;
            public ushort wDayOfWeek;
            public ushort wDay;
            public ushort wHour;
            public ushort wMinute;
            public ushort wSecond;
            public ushort wMiliseconds;
        }
[DllImport("coredll")]
        public static extern bool SetSystemTime(ref SystemTime sysTime);    //设置系统时间



SystemTime time = new SystemTime();
                time.wYear = 2007;
                time.wMonth = 9;
                time.wDay = 30;
                time.wHour = 16;
                time.wMinute = 0;
                time.wSecond = 0;
                SetSystemTime(ref time);
点赞  2007-11-22 11:21
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复