c#实现输出本月的月历

Posted 阿然jronny

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#实现输出本月的月历相关的知识,希望对你有一定的参考价值。

效果如图:

代码如下:

namespace WebForm
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            PrintCalender(2016, 10);
        }

        public static void PrintCalender(int year, int month)
        {
            formatDate fd = new formatDate(year, month);
            string calender =
 @"日 一 二 三 四 五 六
{0} {0} {0} {0} {0} {0} {0}
{0} {0} {0} {0} {0} {0} {0}
{0} {0} {0} {0} {0} {0} {0}
{0} {0} {0} {0} {0} {0} {0}
{0} {0} {0} {0} {0} {0} {0}
{0} {0} {0} {0} {0} {0} {0}";
            calender = string.Format(calender, fd).TrimEnd();
            HttpContext.Current.Response.Write(calender);
        }
    }
    
    public class formatDate : IFormattable
    {
        int num;
        int max;
        public formatDate(int year, int month)
        {
            DateTime dt = new DateTime(year, month, 1);
            num = (int)dt.DayOfWeek * -1;
            max = DateTime.DaysInMonth(year, month);
        }
        public string ToString(string format, IFormatProvider formatProvider)
        {
            return num++ < 0 || num > max ? "  " : num.ToString("00");
        }
    }
}

 

以上是关于c#实现输出本月的月历的主要内容,如果未能解决你的问题,请参考以下文章

C# 中的月历

在 C# 中计算两个月历之间的时间段

在C#的月历控件中,怎样得到被选中的日期?

python实现输入月份查询本月天数

24:打印月历

是否可以动态编译和执行 C# 代码片段?