helpcommands.cs
来自「SharpDevelop2.0.0 c#开发免费工具」· CS 代码 · 共 84 行
CS
84 行
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
// <version>$Revision: 915 $</version>
// </file>
using System;
using System.Diagnostics;
using System.IO;
using System.Collections;
using System.Windows.Forms;
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop.Gui;
namespace ICSharpCode.SharpDevelop.Commands
{
public class ShowSensitiveHelp : AbstractMenuCommand
{
public override void Run()
{
IWorkbenchWindow window = WorkbenchSingleton.Workbench.ActiveWorkbenchWindow;
IContextHelpProvider helpProvider = window != null ? window.ActiveViewContent as IContextHelpProvider : null;
foreach (PadDescriptor descriptor in WorkbenchSingleton.Workbench.PadContentCollection) {
if (descriptor.HasFocus && descriptor.PadContent is IContextHelpProvider) {
((IContextHelpProvider)descriptor.PadContent).ShowHelp();
return;
}
}
if (helpProvider != null) {
helpProvider.ShowHelp();
}
}
}
public class LinkCommand : AbstractMenuCommand
{
string site;
public LinkCommand(string site)
{
this.site = site;
}
public override void Run()
{
if (site.StartsWith("home://")) {
string file = Path.Combine(FileUtility.ApplicationRootPath, site.Substring(7).Replace('/', Path.DirectorySeparatorChar));
try {
Process.Start(file);
} catch (Exception) {
MessageService.ShowError("Can't execute/view " + file + "\n Please check that the file exists and that you can open this file.");
}
} else {
FileService.OpenFile(site);
}
}
}
public class ViewTipOfTheDay : AbstractMenuCommand
{
public override void Run()
{
using (TipOfTheDayDialog totdd = new TipOfTheDayDialog()) {
totdd.Owner = (Form)WorkbenchSingleton.Workbench;
totdd.ShowDialog(ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.MainForm);
}
}
}
public class AboutSharpDevelop : AbstractMenuCommand
{
public override void Run()
{
using (CommonAboutDialog ad = new CommonAboutDialog()) {
ad.Owner = (Form)WorkbenchSingleton.Workbench;
ad.ShowDialog(ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.MainForm);
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?