• 大小: 80KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-07
  • 语言: C#
  • 标签: c#  万年历  

资源简介

c# winfrom万年历 c# winfrom万年历

资源截图

代码片段和文件信息

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 WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender EventArgs e)
        {
            richTextBox1.Text += “星期日\t星期一\t星期二\t星期三\t星期四\t星期五\t星期六\t“;

            string year = textBox1.Text.Trim();
            string month = textBox2.Text.Trim();

            string data = textBox1.Text.Trim() + “-“ + textBox2.Text.Trim() + “-“ + “1“;
            DateTime datetime = DateTime.Parse(data);
            if (month == “1“ || month == “3“ || month == “5“ || month == “7“ || month == “8“ || month == “10“ || month == “12“)
            {
                Print(datetime 31);
            }
            else if (month == “4“ || month == “6“ || month == “9“ || month == “11“)
            {
                Print(datetime 30);
            }
            else
            {
                int two = datetime.DayOfYear;
                string dating = textBox1.Text.Trim() + “-“ + “3-1“;
                DateTime date_three = DateTime.Parse(dating);
                int three = date_three.DayOfYear;
                Print(datetime (three - two));
            }
        }
        public void Print(DateTime date int days)
        {
            int weeks = (int)date.DayOfWeek;
            richTextBox1.Text += “\r\n“;
            for (int i = 0; i < weeks; i++)
            {
                richTextBox1.Text += “\t“;
            }
            for (int i = 0; i < 7 - weeks; i++)
            {
                richTextBox1.Text += (i + 1).ToString() + “\t“;
            }
            richTextBox1.Text += “\r\n“;
            for (int i = 7 - weeks + 1; i <= days; i++)
            {
                if ((i + weeks - 7) % 7 == 0)
                {
                    richTextBox1.Text += i.ToString() + “\t“ + “\r\n“;
                }
                else
                {
                    richTextBox1.Text += i.ToString() + “\t“;
                }

            }
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      10240  2009-11-26 17:54  万年历\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.exe

     文件      22016  2009-11-26 17:54  万年历\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.pdb

     文件      14328  2009-12-05 18:03  万年历\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.vshost.exe

     文件        490  2007-07-21 01:33  万年历\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug\WindowsFormsApplication1.vshost.exe.manifest

     文件       2338  2009-11-26 17:54  万年历\WindowsFormsApplication1\WindowsFormsApplication1\Form1.cs

     文件       4549  2009-11-26 17:54  万年历\WindowsFormsApplication1\WindowsFormsApplication1\Form1.Designer.cs

     文件       5814  2009-11-26 17:54  万年历\WindowsFormsApplication1\WindowsFormsApplication1\Form1.resx

     文件       1367  2009-12-05 18:03  万年历\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.csproj.FileListAbsolute.txt

     文件        847  2009-11-26 17:54  万年历\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache

     文件      10240  2009-11-26 17:54  万年历\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.exe

     文件        180  2009-11-26 17:54  万年历\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.Form1.resources

     文件      22016  2009-11-26 17:54  万年历\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.pdb

     文件        180  2009-11-26 17:54  万年历\WindowsFormsApplication1\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.Properties.Resources.resources

     文件        505  2009-11-26 13:42  万年历\WindowsFormsApplication1\WindowsFormsApplication1\Program.cs

     文件       1380  2009-11-26 13:42  万年历\WindowsFormsApplication1\WindowsFormsApplication1\Properties\AssemblyInfo.cs

     文件       2898  2009-11-26 13:42  万年历\WindowsFormsApplication1\WindowsFormsApplication1\Properties\Resources.Designer.cs

     文件       5612  2009-11-26 13:42  万年历\WindowsFormsApplication1\WindowsFormsApplication1\Properties\Resources.resx

     文件       1109  2009-11-26 13:42  万年历\WindowsFormsApplication1\WindowsFormsApplication1\Properties\Settings.Designer.cs

     文件        249  2009-11-26 13:42  万年历\WindowsFormsApplication1\WindowsFormsApplication1\Properties\Settings.settings

     文件       3759  2009-11-26 17:54  万年历\WindowsFormsApplication1\WindowsFormsApplication1\WindowsFormsApplication1.csproj

     文件        962  2009-11-26 13:42  万年历\WindowsFormsApplication1\WindowsFormsApplication1.sln

     文件      15360  2009-12-05 18:03  万年历\WindowsFormsApplication1\WindowsFormsApplication1.suo

     文件      10240  2009-11-26 14:15  万年历\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.exe

     文件      26112  2009-11-26 14:15  万年历\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.pdb

     文件      14328  2009-11-26 18:46  万年历\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.vshost.exe

     文件        490  2009-06-11 05:14  万年历\WindowsFormsApplication2\bin\Debug\WindowsFormsApplication2.vshost.exe.manifest

     文件       2344  2009-11-26 14:17  万年历\WindowsFormsApplication2\Form1.cs

     文件       4548  2009-11-26 13:43  万年历\WindowsFormsApplication2\Form1.Designer.cs

     文件       5814  2009-11-26 13:43  万年历\WindowsFormsApplication2\Form1.resx

     文件       1229  2009-11-26 18:46  万年历\WindowsFormsApplication2\obj\Debug\WindowsFormsApplication2.csproj.FileListAbsolute.txt

............此处省略33个文件信息

评论

共有 条评论