当前位置:  编程技术>.net/c#/asp.net

C#实现修改系统时间的方法

    来源: 互联网  发布时间:2014-10-31

    本文导语:  本文所述C#获取和修改系统时间的实现步骤为:系统的时间从 SystemTime 结构体中取出,并显示在textBox1上,从setDate,setTime控件中获取年,月,日,小时,分钟,秒信息,存入SystemTime结构体中,然后使用SetLocalTime(ref systemTime)设置...

本文所述C#获取和修改系统时间的实现步骤为:系统的时间从 SystemTime 结构体中取出,并显示在textBox1上,从setDate,setTime控件中获取年,月,日,小时,分钟,秒信息,存入SystemTime结构体中,然后使用SetLocalTime(ref systemTime)设置为用户指定的时间。本代码编译后会有一个易于操作的窗体。

完整功能代码如下:

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Runtime.InteropServices;
namespace changesystime
{
 /// 
 /// Form1 的摘要说明。
 /// 
 public class Form1 : System.Windows.Forms.Form
 {
 private System.Windows.Forms.GroupBox groupBox1;
 private System.Windows.Forms.TextBox textBox1;
 private System.Windows.Forms.GroupBox groupBox2;
 private System.Windows.Forms.Button button1;
 private System.Windows.Forms.Button button2;
 private System.Timers.Timer timer1;
 private System.Windows.Forms.DateTimePicker setDate;
 private System.Windows.Forms.DateTimePicker setTime;
 private System.ComponentModel.IContainer components;
 [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("Kernel32.dll")]
 public static extern bool SetLocalTime( ref SystemTime sysTime );
 // 用于获得系统时间
 [DllImport("Kernel32.dll")]
 public static extern void GetLocalTime(ref SystemTime sysTime);
 public Form1()
 {
  //
  // Windows 窗体设计器支持所必需的
  //
  InitializeComponent();

  //
  // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  //
 }

 /// 
 /// 清理所有正在使用的资源。
 /// 
 protected override void Dispose( bool disposing )
 {
  if( disposing )
  {
  if (components != null) 
  {
   components.Dispose();
  }
  }
  base.Dispose( disposing );
 }

 #region Windows 窗体设计器生成的代码
 /// 
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// 
 private void InitializeComponent()
 {
  this.groupBox1 = new System.Windows.Forms.GroupBox();
  this.textBox1 = new System.Windows.Forms.TextBox();
  this.groupBox2 = new System.Windows.Forms.GroupBox();
  this.setTime = new System.Windows.Forms.DateTimePicker();
  this.setDate = new System.Windows.Forms.DateTimePicker();
  this.button1 = new System.Windows.Forms.Button();
  this.button2 = new System.Windows.Forms.Button();
  this.timer1 = new System.Timers.Timer();
  this.groupBox1.SuspendLayout();
  this.groupBox2.SuspendLayout();
  ((System.ComponentModel.ISupportInitialize)(this.timer1)).BeginInit();
  this.SuspendLayout();
  // 
  // groupBox1
  // 
  this.groupBox1.Controls.Add(this.textBox1);
  this.groupBox1.Location = new System.Drawing.Point(32, 24);
  this.groupBox1.Name = "groupBox1";
  this.groupBox1.Size = new System.Drawing.Size(216, 64);
  this.groupBox1.TabIndex = 0;
  this.groupBox1.TabStop = false;
  this.groupBox1.Text = "系统当前时间";
  // 
  // textBox1
  // 
  this.textBox1.Location = new System.Drawing.Point(16, 24);
  this.textBox1.Name = "textBox1";
  this.textBox1.ReadOnly = true;
  this.textBox1.Size = new System.Drawing.Size(184, 21);
  this.textBox1.TabIndex = 1;
  this.textBox1.Text = "";
  // 
  // groupBox2
  // 
  this.groupBox2.Controls.Add(this.setTime);
  this.groupBox2.Controls.Add(this.setDate);
  this.groupBox2.Location = new System.Drawing.Point(32, 112);
  this.groupBox2.Name = "groupBox2";
  this.groupBox2.Size = new System.Drawing.Size(216, 64);
  this.groupBox2.TabIndex = 1;
  this.groupBox2.TabStop = false;
  this.groupBox2.Text = "时间设置为";
  // 
  // setTime
  // 
  this.setTime.Format = System.Windows.Forms.DateTimePickerFormat.Time;
  this.setTime.Location = new System.Drawing.Point(128, 24);
  this.setTime.Name = "setTime";
  this.setTime.ShowUpDown = true;
  this.setTime.Size = new System.Drawing.Size(72, 21);
  this.setTime.TabIndex = 1;
  this.setTime.TabStop = false;
  // 
  // setDate
  // 
  this.setDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
  this.setDate.Location = new System.Drawing.Point(8, 24);
  this.setDate.Name = "setDate";
  this.setDate.Size = new System.Drawing.Size(104, 21);
  this.setDate.TabIndex = 0;
  // 
  // button1
  // 
  this.button1.Location = new System.Drawing.Point(40, 200);
  this.button1.Name = "button1";
  this.button1.Size = new System.Drawing.Size(64, 32);
  this.button1.TabIndex = 2;
  this.button1.Text = "设置";
  this.button1.Click += new System.EventHandler(this.button1_Click);
  // 
  // button2
  // 
  this.button2.Location = new System.Drawing.Point(168, 200);
  this.button2.Name = "button2";
  this.button2.Size = new System.Drawing.Size(64, 32);
  this.button2.TabIndex = 3;
  this.button2.Text = "退出";
  this.button2.Click += new System.EventHandler(this.button2_Click);
  // 
  // timer1
  // 
  this.timer1.Enabled = true;
  this.timer1.SynchronizingObject = this;
  this.timer1.Elapsed += new System.Timers.ElapsedEventHandler(this.timer1_Elapsed);
  // 
  // Form1
  // 
  this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  this.ClientSize = new System.Drawing.Size(280, 261);
  this.Controls.Add(this.button2);
  this.Controls.Add(this.button1);
  this.Controls.Add(this.groupBox2);
  this.Controls.Add(this.groupBox1);
  this.Name = "Form1";
  this.Text = "获取和设置系统时间";
  this.groupBox1.ResumeLayout(false);
  this.groupBox2.ResumeLayout(false);
  ((System.ComponentModel.ISupportInitialize)(this.timer1)).EndInit();
  this.ResumeLayout(false);

 }
 #endregion
 /// 
 /// 应用程序的主入口点。
 /// 
 [STAThread]
 static void Main() 
 {
  Application.Run(new Form1());
 }

 private void button2_Click(object sender, System.EventArgs e)
 {
  this.Close(); // 关闭当前窗体
 }

 private void timer1_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
 {
  // 清除textBox1上的字符串
  textBox1.Clear();
  // 创建SystemTime结构体,用于接收系统当前时间
  SystemTime systemTime = new SystemTime();
  GetLocalTime(ref systemTime); // 获得系统的时间并存在SystemTime结构体中
  // 将系统的时间从 SystemTime 结构体中中取出,并显示在textBox1上
  textBox1.Text += systemTime.wYear.ToString() +"-";
  textBox1.Text += systemTime.wMonth.ToString() + "-";
  textBox1.Text += systemTime.wDay.ToString() + " ";
  textBox1.Text += systemTime.wHour.ToString() + ":";
  textBox1.Text += systemTime.wMinute.ToString() + ":";
  textBox1.Text += systemTime.wSecond.ToString();
 // textBox1.Refresh(); 
 }
 private void button1_Click(object sender, System.EventArgs e)
 {
  // 创建SystemTime结构体,用于接收用户设置的时间
  SystemTime systemTime = new SystemTime();
  // 从setDate,setTime控件中获取年,月,日,小时,分钟,秒信息,存入SystemTime结构体中
      systemTime.wYear = (ushort)setDate.Value.Year;
  systemTime.wMonth = (ushort)setDate.Value.Month;
  systemTime.wDay = (ushort)setDate.Value.Day;
  systemTime.wHour = (ushort)setTime.Value.Hour;
  systemTime.wMinute = (ushort)setTime.Value.Minute;
  systemTime.wSecond = (ushort)setTime.Value.Second;
  // 将系统的时间设置为用户指定的时间
  SetLocalTime(ref systemTime);
 }
 }
}

    
 
 

您可能感兴趣的文章:

  • c#通过委托delegate与Dictionary实现action选择器代码举例
  • C#实现获取枚举中元素个数的方法
  • java获取当前时间和前一天日期(实现代码) iis7站长之家
  • C#键盘输入回车键实现点击按钮效果的方法
  • C#实现获取一年中是第几个星期的方法
  • C#实现Datatable排序的方法
  • C#实现装箱与拆箱操作简单实例
  • 解决C#中WebBrowser的DocumentCompleted事件不执行的实现方法
  • C#下实现创建和删除目录的实例代码
  • 使用C#实现在屏幕上画图效果的代码实例
  • C#实现过滤html标签并保留a标签的方法
  • c#实现TextBox只允许输入数字
  • C# Winform 整个窗口拖动的实现代码
  • c# ListView实现双击Item事件的变通方法
  • C#实现随鼠标移动窗体实例
  • C#中的FileUpload 选择后的预览效果具体实现
  • C# 窗体隐藏及任务管理器中禁止关闭的实现代码
  • C#的锯齿数组以及C++实现代码
  • C#格式化文件大小的实现代码
  • C#怎样才能实现窗体最小化到托盘呢?
  • C# char类型字符转换大小写的实现代码
  • unix 下 C++实现 ftp 到另一台主机上 修改文件内容 !能不能直接在主机上修改 还是只能get下来本地修改完后 在put上去
  • 请问如何修改网卡的速率,如强制100M,强制10M,怎么实现的,是不是要修改驱动?
  • 求助,linux中修改了目录dir下的某个文件,相应的dir属性中的时间会与修改目录下文件的时间一致,这是怎么实现的?
  • 如何编程实现(不用shell命令)修改文件的时间
  • LINUX下用C语言实现修改目录名字。
  • 修改.htaccess实现301域名重定向示例分享
  • 请问html中的文本输入框中如何实现静态的不可修改文本
  • 请问在linux中,怎样用c语言编程来实现对计算机的日期和时间的修改啊?
  • 一条SQL语句修改多表多字段的信息的具体实现
  • c# 多文档窗口修改mdi窗体背景色的实现代码
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • SQL Server本地时间和UTC时间的相互转换实现代码
  • php自定义函数实现美国时间转为北京时间
  • php实现的太平洋时间和北京时间互转的自定义函数分享
  • 如何用shell实现 删除创建时间超过指定时间的文件?
  • Linux的C,如何实现时间的加减???
  • 请教:Linux下的时间比较,编程怎么实现?
  • linux服务器之间如何实现时间同步?
  • 在linux系统上,如何用C++实现获取和设置系统时间?
  • 用JSP实现时间戳,急!急!急!给50分!!!先谢谢大家了.
  • Windows下的消息时间事件机制在Unix下如何实现?
  • java获取当前时间和前一天日期(实现代码)
  • java时间戳转日期格式的实现代码
  • 在命令行如何实现日期时间的前后计算?
  • 请教一下,如何用shell 编程实现删除超过一定时间以前的文件?
  • 在unix下写一个每日批处理的程序,如何实现每日某个时间触发我要运行的代码?
  • C++实现调用系统时间简单示例
  • 求人帮助,用shell些个脚本实现时间递增
  • SQL 实现某时间段的统计业务
  • 在ADF中跟踪SQL执行时间实现代码
  • jsp实现页面实时显示当前系统时间的方法
  • 通过javascript实现DIV居中,兼容各浏览器版本
  • socket实现多文件并发传输,求助多线程实现问题?
  • Python GUI编程:tkinter实现一个窗口并居中代码
  • interface 到底有什么用???实现接口,怎么实现??
  • 通过javascript库JQuery实现页面跳转功能代码
  • 怎么用Jsp实现在页面实现树型结构?
  • sharepoint 2010 使用STSNavigate函数实现文件下载举例
  • windows 下的PortTunnel 在linux下怎么实现?或者相应的已经实现的软件?端口映射
  • php实现socket实现客户端和服务端数据通信源代码
  • 网站重定向用C语言实现iptables,ACL实现
  • flash AS3反射实现(describeType和getDefinitionByName)


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3