求助一个C#写的年历
用C#写2013年的月历 --------------------编程问答-------------------- http://blog.csdn.net/lcl_data/article/details/4688624之前做的一个例子 --------------------编程问答-------------------- c#就有相关的控件了,只是说放大缩小没有写好
之前查过一个MPK calendar的,还不错,就是样子丑了一点,codeproject上有 --------------------编程问答-------------------- 还写2013年哪都快成老黄历了,应该写2014年的才对。今天哥心情好,给你写个能完整运行的版本:
using System;--------------------编程问答-------------------- http://bbs.csdn.net/topics/370043525
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication10
{
class Program
{
static void Main(string[] args)
{
DateTime date = new DateTime(2014, 1, 1);
Console.WriteLine("{0:yyyy}年年历:", date);
int month = 0;
for (; ; )
{
if (date.Year != 2014)
{
break;
}
if (month != date.Month)
{
month = date.Month;
Console.WriteLine();
Console.WriteLine(month + "月");
Console.Write(new String(' ', 3 * (int)date.DayOfWeek));
}
Console.Write(date.Day.ToString().PadLeft(3));
if (date.DayOfWeek == DayOfWeek.Saturday)
{
Console.WriteLine();
}
date = date.AddDays(1);
}
Console.ReadLine();
}
}
}
(
补充:.NET技术 , C#