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

📄 optionsdialog.cs

📁 c#精彩编程百例(源代码)
💻 CS
字号:
//  OptionsDialog.cs 
//  Copyright (C) 2000 Mike Krueger
//
//  This program is free software; you can redistribute it and/or modify
//  it under the terms of the GNU General Public License as published by
//  the Free Software Foundation; either version 2 of the License, or
//  (at your option) any later version.
//
//  This program is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with this program; if not, write to the Free Software
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

using SharpDevelop.Gui;
using SharpDevelop.Tool.Data;

namespace SharpDevelop.Gui.Dialogs {
	
	public class OptionsDialog : Form 
	{
		private Container    components   = new Container();
		private Button       okButton     = new Button(); 
		private PropertyGrid grid         = new PropertyGrid();
		
		public OptionsDialog(string tiletext, object customizer) 
		{
			grid.SelectedObject = customizer;
			
			AutoScaleBaseSize = new Size(5, 13);
			Text = tiletext;
			
			StartPosition = FormStartPosition.CenterParent;
			Icon = null;
			AcceptButton = okButton;
			this.FormBorderStyle = FormBorderStyle.FixedDialog;
			
			MaximizeBox  = MinimizeBox = false;
			
			ClientSize  = new Size(330, 330);
			
			okButton.Location     = new Point(230, 302);
			okButton.DialogResult = DialogResult.OK;
			okButton.Size         = new Size(75, 22);
			okButton.Anchor       = AnchorStyles.Bottom | AnchorStyles.Right;
			okButton.Text         = Resource.GetString("Global.OKButtonText");
			
			grid.Location                   = new Point(8, 8);
			grid.Size                       = new Size(300, 290);
			grid.CommandsVisibleIfAvailable = true;
//			grid.ActiveDocument             = null;
			grid.AutoScrollMinSize          = new Size(0, 0);
//			grid.Anchor                     = AnchorStyles.All;
			grid.ToolbarVisible             = false;
			
			Controls.Add(okButton);
			Controls.Add(grid);
			MaximizeBox  = MinimizeBox = false;
			ShowInTaskbar = false;
			Icon = null;
		}
		
		public override void Dispose() 
		{
			base.Dispose();
			components.Dispose();
		}
		
	}
}

⌨️ 快捷键说明

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