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

📄 checkcodedesigndialog.cs

📁 EpiInfo 开源的导航系统远程序,不知道在哪里下的了,分享一下,有兴趣的
💻 CS
字号:
#region Namespaces

using System;
using System.Collections.Generic;
using System.Text;
using Epi.Windows.Dialogs;

#endregion  //Namespaces

namespace Epi.Windows.MakeView.Dialogs.CheckCodeCommandDialogs
{
    /// <summary>
    /// Base class for all check code design dialogs
    /// </summary>
    public partial class CheckCodeDesignDialog : DialogBase
    {
        #region Private Attributes
        private string output;
        #endregion Private Attributes

        #region Constructors
        /// <summary>
        /// Default Constructor - Design time only
        /// </summary>
        [Obsolete("Use of default constructor not allowed", true)]
        public CheckCodeDesignDialog()
        {
        }

        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="frm">The main form</param>
        public CheckCodeDesignDialog(MainForm frm)
            : base(frm)
        {
        }

        #endregion Constructors

        #region Properties

        /// <summary>
        /// The view
        /// </summary>
		public virtual View View
        {
            set {/* Do Nothing */}
        }

        /// <summary>
        /// 
        /// </summary>
        /// <summary>
        /// Gets or sets the output of the dialog
        /// </summary>
        public string Output
        {
            get
            {
                return this.output;
            }
            set
            {
                this.output = value;
            }
        }
        #endregion Properties
    }
}

⌨️ 快捷键说明

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