温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

C#如何实现动态数字时钟和日历

发布时间:2022-06-14 09:55:53 阅读:212 作者:iii 栏目:开发技术
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

这篇“C#如何实现动态数字时钟和日历”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“C#如何实现动态数字时钟和日历”文章吧。

实现如下图所示的简易时钟和日历,要求显示公历日期、时间、星期、农历日期。

C#如何实现动态数字时钟和日历

首先新建一个ChineseCanlendar类用于实现和农历相关的操作:

【ChineseCanlendar.cs】

/*
 * 作者:JeronZhou
 * 时间:2021-11-01
 * 功能:动态数字时钟和日历
 */

using System;
using System.Linq;
using System.Globalization;

namespace Test2_1
{
    static public class ChineseCanlendar
    {
        private static ChineseLunisolarCalendar ChineseCalendar = new ChineseLunisolarCalendar();
        private static string[] tg = { "甲""乙""丙""丁""戊""己""庚""辛""壬""癸" };
        private static string[] dz = { "子""丑""寅""卯""辰""巳""午""未""申""酉""戌""亥" };
        private static string[] sx = { "鼠""牛""虎""兔""龙""蛇""马""羊""猴""鸡""狗""猪" };
        public static string GetLunisolarYear(int year)
        {
            if (year > 3)
            {
                int tgIndex = (year - 4) % 10;
                int dzIndex = (year - 4) % 12;
                return string.Concat(tg[tgIndex], dz[dzIndex], "[", sx[dzIndex], "]");
            }
            throw new ArgumentOutOfRangeException("年份无效!");
        }
        private static string[] months = { "正""二""三""四""五""六""七""八""九""十""十一""十二(腊)" };
        private static string[] days1 = { "初""十""廿""三" };
        private static string[] days = { "一""二""三""四""五""六""七""八""九""十" };
        public static string GetLunisolarMonth(int month)
        {
            if (month < 13 && month > 0)
            {
                return months[month - 1];
            }
            throw new ArgumentOutOfRangeException("月份无效!");
        }
        public static string GetLunisolarDay(int day)
        {
            if (day > 0 && day < 32)
            {
                if (day != 20 && day != 30)
                {
                    return string.Concat(days1[(day - 1) / 10], days[(day - 1) % 10]);
                }
                else
                {
                    return string.Concat(days[(day - 1) / 10], days1[1]);
                }
            }
            throw new ArgumentOutOfRangeException("无效日期!");
        }
        public static string GetChineseDateTime(DateTime datetime)
        {
            int year = ChineseCalendar.GetYear(datetime);
            int month = ChineseCalendar.GetMonth(datetime);
            int day = ChineseCalendar.GetDayOfMonth(datetime);
            int leapMonth = ChineseCalendar.GetLeapMonth(year);
            bool isleap = false;
            if (leapMonth > 0)
            {
                if (leapMonth == month)
                {    
                    isleap = true;
                    month--;
                }
                else if (month > leapMonth)
                {
                    month--;
                }
            }
            return string.Concat(GetLunisolarYear(year), "年", isleap ? "闰" : string.Empty, GetLunisolarMonth(month), "月", GetLunisolarDay(day));
        }
    }
}

【窗体设计】

从上到下设置三个标签,并添加背景颜色,为了使效果更佳,最好将窗口全部填满:

C#如何实现动态数字时钟和日历

【MainForm.cs】

/*
 * 作者:JeronZhou
 * 时间:2021-11-01
 * 功能:动态数字时钟和日历
 */

using System;
using System.Linq;
using System.Windows.Forms;

namespace Test2_1
{
    public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();
            timer1.Start();
        }
        void Timer1Tick(object sender, EventArgs e)
        {
            label1.Text = DateTime.Now.ToString();
            switch(DateTime.Now.DayOfWeek.ToString())
            {
                case "Monday":
                    label2.Text = "星期一"break;
                case "Tuesday":
                    label2.Text = "星期二"break;
                case "Wednesday":
                    label2.Text = "星期三"break;
                case "Thursday":
                    label2.Text = "星期四"break;
                case "Friday":
                    label2.Text = "星期五"break;
                case "Saturday":
                    label2.Text = "星期六"break;
                case "Sunday":
                    label2.Text = "星期日"break;
            }
            string GCDT = ChineseCanlendar.GetChineseDateTime(DateTime.Now);
            label3.Text = GCDT;
        }
    }
}

【Program.cs】

/*
 * 作者:JeronZhou
 * 时间:2021-11-01
 * 功能:动态数字时钟和日历
 */

using System;
using System.Windows.Forms;

namespace Test2_1
{
    internal sealed class Program
    {
        [STAThread]
        private static void Main(string[] args)
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new MainForm());
        }
    }
}

【运行结果】

C#如何实现动态数字时钟和日历

以上就是关于“C#如何实现动态数字时钟和日历”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注亿速云行业资讯频道。

亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI

开发者交流群×