objbrowsercommand.cs
来自「全功能c#编译器」· CS 代码 · 共 28 行
CS
28 行
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Georg Brandl" email="g.brandl@gmx.net"/>
// <version value="$version"/>
// </file>
using System;
using ICSharpCode.SharpDevelop.Gui;
namespace ObjectBrowser
{
public class ObjectBrowserCommand : ICSharpCode.Core.AddIns.Codons.AbstractMenuCommand
{
public override void Run() {
DisplayInformationWrapper vw;
vw = new DisplayInformationWrapper();
vw.LoadStdAssemblies();
vw.LoadRefAssemblies();
WorkbenchSingleton.Workbench.ShowView(vw);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?