idesignervisitor.cs

来自「c#源代码」· CS 代码 · 共 21 行

CS
21
字号
/*
 * Created by SharpDevelop.
 * User: Forstmeier Helmut
 * Date: 10.08.2005
 * Time: 22:14
 * 
 * To change this template use Tools | Options | Coding | Edit Standard Headers.
 */

/// <summary>
/// Each DesignControl Visitor has to implement this Interface
/// </summary>
using System;

namespace SharpReport.Designer{
	public interface IDesignerVisitor  {
		void Visit (SharpReport.Designer.BaseDesignerControl  designer);
		}
}
		

⌨️ 快捷键说明

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