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 Microsoft.VisualBasic; namespace AddDate { public partial class Frm_Main : Form { public Frm_Main() { InitializeComponent(); } private DateTime G_datetime;//定義時間字段 private void Frm_Main_Load(object sender, EventArgs e) { G_datetime=DateTime.Now;//得到系統當前時間 lab_time.Text = G_datetime.ToString(//顯示時間信息 "時間: yyyy年M月d日 H時m分s秒"); } /*參數 Interval 類型:Microsoft.VisualBasic.DateInterval 必需。 表示要加上的時間間隔的 DateInterval 枚舉值或 String 表達式。 Number 類型:System.Double 必需。 Double . 表示希望添加的時間間隔數的浮點表達式。 Number 可以為正數(此時將獲取今後的日期/時間值),也可以為負數(此時將獲取過去的日期/時間值)。 在 Interval 指定小時、分鐘或秒時,該參數可以包含小數部分。 對於其他類型的 Interval 值,將忽略 Number 的所有小數部分。 DateValue 類型:System.DateTime 必需。 Date . 表示要在其基礎上加上此時間間隔的日期和時間的表達式。 DateValue 本身在調用程序中並未改變。 返回值 類型:System.DateTime 返回一個 Date 值,其中包含已添加指定時間間隔的日期和時間值。 */ private void btn_AddM_Click(object sender, EventArgs e) { G_datetime = DateAndTime.DateAdd(//向時間字段中添加一分鐘 DateInterval.Minute, 1, G_datetime); lab_time.Text = G_datetime.ToString(//顯示時間信息 "時間: yyyy年M月d日 H時m分s秒"); } private void btn_AddH_Click(object sender, EventArgs e) { G_datetime = DateAndTime.DateAdd(//向時間字段中添加一小時 DateInterval.Hour, 1, G_datetime); lab_time.Text = G_datetime.ToString(//顯示時間信息 "時間: yyyy年M月d日 H時m分s秒"); } private void btn_addD_Click(object sender, EventArgs e) { G_datetime = DateAndTime.DateAdd(//向時間字段中添加一天 DateInterval.Day, 1, G_datetime); lab_time.Text = G_datetime.ToString(//顯示時間信息 "時間: yyyy年M月d日 H時m分s秒"); } } }
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; namespace GetInterval { public partial class Frm_Main : Form { public Frm_Main() { InitializeComponent(); } private DateTime G_DateTime_First,//定義兩個時間字段 G_DateTime_Second; private void btn_First_Click(object sender, EventArgs e) { G_DateTime_First = DateTime.Now;//為時間字段賦值 lab_first.Text = "系統時間:" +//顯示時間 G_DateTime_First.ToString( "yyyy年M月d日 H時m分s秒 fff毫秒"); } private void btn_Second_Click(object sender, EventArgs e) { G_DateTime_Second = DateTime.Now;//為時間字段賦值 lab_second.Text = "系統時間:" +//顯示時間 G_DateTime_Second.ToString( "yyyy年M月d日 H時m分s秒 fff毫秒"); } private void btn_Result_Click(object sender, EventArgs e) { TimeSpan P_timespan_temp =//將新的 TimeSpan 結構初始化為指定的天數、小時數、分鐘數、秒數和毫秒數。計算兩個時間的時間間隔 G_DateTime_First > G_DateTime_Second ? G_DateTime_First - G_DateTime_Second : G_DateTime_Second - G_DateTime_First; lab_result.Text = string.Format(//顯示時間間隔 "間隔時間:{0}天{1}時{2}分{3}秒 {4}毫秒", P_timespan_temp.Days, P_timespan_temp.Hours,//P_timespan_temp.Days獲取當前 TimeSpan 結構所表示的時間間隔的天數部分。 P_timespan_temp.Minutes, P_timespan_temp.Seconds, P_timespan_temp.Milliseconds); } } }