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

📄 clipboardtests.cs

📁 全功能c#编译器
💻 CS
字号:
// <file>
//     <copyright see="prj:///doc/copyright.txt"/>
//     <license see="prj:///doc/license.txt"/>
//     <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
//     <version value="$version"/>
// </file>
using System;
using System.Text;
using System.Windows.Forms;

using ICSharpCode.SharpUnit;

using ICSharpCode.TextEditor.Document;
using ICSharpCode.TextEditor.Actions;
/*
[TestSuiteAttribute("Test the clipboard actions")]
public class ClipboardActionTests
{	
	[TestMethodAttribute()]
	public void CutActionTest()
	{
		TestEditactionService editActionService = new TestEditactionService();
		new Cut().Execute(editActionService);
		Assertion.Assert(editActionService.CutCalled);
	}
	
	[TestMethodAttribute()]
	public void CopyActionTest()
	{
		TestEditactionService editActionService = new TestEditactionService();
		new Copy().Execute(editActionService);
		Assertion.Assert(editActionService.CopyCalled);
	}
	
	[TestMethodAttribute()]
	public void PasteActionTest()
	{
		TestEditactionService editActionService = new TestEditactionService();
		new Paste().Execute(editActionService);
		Assertion.Assert(editActionService.PasteCalled);
	}	
}
*/

⌨️ 快捷键说明

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