吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 3509|回复: 5
收起左侧

[其他原创] 【原创源码】更改系统时间

[复制链接]
wujishishang 发表于 2016-4-2 12:00
本帖最后由 奋斗丶小Z 于 2016-4-5 20:09 编辑

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace 更改系统时间
{
    public partial class ChaTime : Form
    {
        public ChaTime()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                SystemTime MySystemTime = new SystemTime();

                SetSystemDateTime.GetLocalTime(MySystemTime);
                MySystemTime.vHour = (ushort)Convert.ToInt16(txbH.Text);

                MySystemTime.vMinute = (ushort)Convert.ToInt16(txbM.Text);

                MySystemTime.vSecond = (ushort)Convert.ToInt16(txbS.Text);

                SetSystemDateTime.SetLocalTime(MySystemTime);
            }
            catch { }
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            label4.Text = "本机时间:" + Convert.ToString(DateTime.Now).Substring(Convert.ToString(DateTime.Now).Length - 8, 8);
        }

        private void ChaTime_Load(object sender, EventArgs e)
        {
            label4.Text = "本机时间:" + Convert.ToString(DateTime.Now).Substring(Convert.ToString(DateTime.Now).Length - 8, 8);               
        }

        private void txbH_KeyPress(object sender, KeyPressEventArgs e)
        {
            try
            {
                int kc = (int)e.KeyChar;
                if ((kc < 48 || kc > 57) && kc != 8)
                    e.Handled = true;
            }
            catch (Exception)
            {
            }  
        }

        private void txbM_KeyPress(object sender, KeyPressEventArgs e)
        {
            try
            {
                int kc = (int)e.KeyChar;
                if ((kc < 48 || kc > 57) && kc != 8)
                    e.Handled = true;
            }
            catch (Exception)
            {
            }  
        }

        private void txbS_KeyPress(object sender, KeyPressEventArgs e)
        {
            try
            {
                int kc = (int)e.KeyChar;
                if ((kc < 48 || kc > 57) && kc != 8)
                    e.Handled = true;
            }
            catch (Exception)
            {
            }  
        }
    }
}


12.jpg

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

 楼主| wujishishang 发表于 2016-4-2 12:02
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;

namespace 更改系统时间
{
    [StructLayoutAttribute(LayoutKind.Sequential)]
   public  class SystemTime
    {

        public ushort vYear;

        public ushort vMonth;

        public ushort vDayOfWeek;

        public ushort vDay;

        public ushort vHour;

        public ushort vMinute;

        public ushort vSecond;

    }
}
faintout 发表于 2016-4-3 09:36 来自手机
spguangz 发表于 2016-4-3 11:27
qingzi000 发表于 2016-4-3 11:39
小白一个~~~~表示看不懂!!!
hu007 发表于 2016-4-3 11:54
小白,只要看结果
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-15 15:29

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表