⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 canselectdateevent.cs

📁 monthcalendar最全的日历monthcalendar最全的日历monthcalendar最全的日历
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace WindowsCalendar
{
    public delegate void CanSelectDateEventHandler(object sender, CanSelectDateEventArgs e);

    public class CanSelectDateEventArgs : EventArgs
    {
        private DateTime m_New;
        private bool m_bCancel = false;

        public CanSelectDateEventArgs(DateTime New)
        {
            m_New = New;
        }

        public DateTime New
        {
            get
            {
                return m_New;
            }
            set
            {
                m_New = value;
            }
        }

        public bool Cancel
        {
            get
            {
                return m_bCancel;
            }
            set
            {
                m_bCancel = value;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -