使用C#中的Win32SetSystemTime修改系统日期(只有日期,没有小时、分钟、秒)



是否可以在不更改小时、分钟和秒(仅年、月和日)的情况下设置系统时间(使用Win32SetSystemTime)?

这是我的密码。正如你所看到的,我评论了falseData.Hoor、falseData.Minute和falseData.Second,因为我不想更改它们。但是,使用此代码,系统时间会自动设置为01:00:00。我可以手动更改系统日期,而不更改小时、分钟和秒(通过单击任务栏的时钟),但通过编程?

任何帮助都将不胜感激。谢谢Marco

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Globalization; 
using System.Runtime.InteropServices; 
namespace SysData1_0
{
    public partial class Form1 : Form
    {
        public struct SystemTime
        {
            public ushort Year;
            public ushort Month;
            public ushort DayOfWeek;
            public ushort Day;
            public ushort Hour;
            public ushort Minute;
            public ushort Second;
            public ushort Milliseconds;
        };
        [DllImport("kernel32.dll", EntryPoint = "GetSystemTime", SetLastError = true)]
        public extern static void Win32GetSystemTime(ref SystemTime sysTime);
        [DllImport("kernel32.dll", EntryPoint ="SetSystemTime",SetLastError=true)]
        public extern static bool Win32SetSystemTime(ref SystemTime sysTime);
        public Form1()
        {
            InitializeComponent();
        }   
        private void buttonImpostaDataFittizia_Click(object sender, EventArgs e)
        {
            SystemTime falseData = new SystemTime ();
            if (comboBox.SelectedIndex == 0)
            {
                falseData.Year = (ushort)2015;
                falseData.Month = (ushort)3;
            }
            if (comboBox.SelectedIndex == 1)
            {
                falseData.Year = (ushort)2014;
                falseData.Month = (ushort)9;
            }
            //Please, read here 
            falseData.Day = (ushort)1;
            //falseData.Hour = (ushort)10 - 1;
            //falseData.Minute = (ushort)30;
            //falseData.Second = (ushort)30;
            Win32SetSystemTime(ref falseData);
            string Y,M,D;
            Y = Convert.ToString(falseData.Year);
            M = Convert.ToString(falseData.Month);
            D = Convert.ToString(falseData.Day);
            textBoxDataImpostata.Text = D + "/" + M + "/" + Y;
        }
    }
}

实际上,这很容易做到,而且您已经拥有了所需的所有方法。在修改并将其注入系统之前,只需获取当前时间:

var nowSystemTime = new SystemTime(); //dummy value so that the code compiles.
Win32GetSystemTime(ref nowSystemTime);
nowSystemTime.Year = (ushort)2015;
nowSystemTime.Month = (ushort)3;
Win32SetSystemTime(ref nowSystemTime);

当然,如果你这样做,请确保在注入系统时间之前不要花太多时间,或者找到补偿的方法!

所有SystemTime字段在创建时都初始化为其类型的默认值:ushort为0。

实际上,您设置了与日期相关的值,但没有设置与时间相关的值(这些值保持为0)。

我想小时中的1与您的时区有关。

你应该做一些类似的事情:

falseData.Hour = DateTime.Now.Hour
falseData.Minute = DateTime.Now.Minute
falseData.Second = DateTime.Now.Seconds

相关内容

  • 没有找到相关文章

最新更新