📄 xsloutputview.cs
字号:
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Matthew Ward" email="mrward@users.sourceforge.net"/>
// <version>$Revision: 915 $</version>
// </file>
using ICSharpCode.Core;
using ICSharpCode.SharpDevelop.Gui;
using System;
namespace ICSharpCode.XmlEditor
{
/// <summary>
/// Displays the resulting output from an XSL transform.
/// </summary>
public class XslOutputView : XmlView
{
public XslOutputView()
{
}
public static XslOutputView Instance {
get {
foreach (IViewContent content in WorkbenchSingleton.Workbench.ViewContentCollection) {
if (content is XslOutputView) {
LoggingService.Debug("XslOutputView instance exists.");
LoggingService.Debug("XslOutputView.IsDisposed=" + content.Control.IsDisposed.ToString());
return (XslOutputView)content;
}
}
return null;
}
}
public override bool IsDirty {
get {
return false;
}
set {
}
}
public override string TitleName {
get {
return "XSLT Output";
}
set {
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -