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

📄 commandbuttonfielddefinition.cs

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

#endregion	Namespaces

namespace Epi.Windows.MakeView.Dialogs.FieldDefinitionDialogs
{

    public partial class CommandButtonFieldDefinition : GenericFieldDefinition
	{

		#region Fields
        /// <summary>
        /// The font button
        /// </summary>
		private CommandButtonField field;
		#endregion //Fields

		#region Constructors
        /// <summary>
        /// Default Constsructor, for exclusive use by the designer.
        /// </summary>
        public CommandButtonFieldDefinition()
        {
            InitializeComponent();
        }

        /// <summary>
        /// Constructor for Command Button Field Definition 
        /// </summary>
        /// <param name="frm">The main form</param>
		public CommandButtonFieldDefinition(MainForm frm) : base(frm)
		{
			InitializeComponent();
		}

		/// <summary>
		/// Constructor for the class
		/// </summary>
        /// <param name="frm">The parent form</param>
		/// <param name="page">The current page</param>
		public CommandButtonFieldDefinition(MainForm frm, Page page) : base(frm)
		{
			InitializeComponent();
			this.mode = FormMode.Create;
			this.page = page;
		}

		/// <summary>
		/// Constructor for the class
		/// </summary>
        /// <param name="frm">The parent form</param>
		/// <param name="field">The fied to be edited</param>
		public CommandButtonFieldDefinition(MainForm frm, CommandButtonField field) : base(frm)
		{
			InitializeComponent();
			this.mode = FormMode.Edit;
			this.field = field;
			this.page = field.Page;
			LoadFormData();
		}
		#endregion //Constructors

		#region Event Handlers
		private void btnButtonFont_Click(object sender, System.EventArgs e)
		{
			FontDialog dialog = new FontDialog();
			if (controlFont != null)
			{
				dialog.Font = controlFont;
			}
			DialogResult result = dialog.ShowDialog();
			if (result == DialogResult.OK)
			{
				controlFont = dialog.Font;
			}
		}
		#endregion	//Event Handlers

		#region Private Methods
		private void LoadFormData()
		{
			txtPrompt.Text = field.PromptText;
			txtFieldName.Text = field.Name;
			controlFont = field.ControlFont;
		}
		#endregion //Private Methods

		#region Public Methods

        /// <summary>
        /// Sets the field's properties based on GUI values
        /// </summary>
        protected override void SetFieldProperties()
        {
            field.Name = txtFieldName.Text;
            field.PromptText = txtPrompt.Text;
            if (controlFont != null)
            {
                field.ControlFont = controlFont;
            }
        }

		/// <summary>
		/// Gets the field defined by this field definition dialog
		/// </summary>
		public override RenderableField Field
		{
			get
			{
				return field;
			}
		}
		#endregion	//Public Methods

				
	}
}

⌨️ 快捷键说明

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