我听说 PowerShell ISE 使用与 VisualStudio 2010 和 Oslo IntelliPad 相同的 WPF 文本编辑器。我知道您可以通过将自己的 WPF 控件插入到编辑器的 XAML 文件中来扩展 VisualStudio 中的此编辑器。我现在的问题是:PowerShellISE 也可以这样做吗?有人尝试过这样做吗?
问问题
682 次
1 回答
4
确实是同一个控件。我不相信您可以插入自己的 WPF 控件。但是,ISE 是完全程序化的,并且具有可用于自定义 ISE 的对象模型。您可以使用 $psise 变量访问对象模型。您可以使用 $psise.options 调整很多选项
1 > $psise.options
SelectedScriptPaneState : Right
ShowToolBar : True
TokenColors : {[Attribute, #FF84A7C1], [Command, #FFFFFF60],
[CommandArgument, #FFFFFFFF], [CommandParameter
, #FFFFDE00]...}
DefaultOptions : Microsoft.PowerShell.Host.ISE.ISEOptions
FontSize : 16
FontName : consolas
ErrorForegroundColor : #FFFF0000
ErrorBackgroundColor : #00FFFFFF
WarningForegroundColor : #FFFF8C00
WarningBackgroundColor : #00FFFFFF
VerboseForegroundColor : #FF0000FF
VerboseBackgroundColor : #00FFFFFF
DebugForegroundColor : #FF0000FF
DebugBackgroundColor : #00FFFFFF
OutputPaneBackgroundColor : #FF000000
OutputPaneTextBackgroundColor : #FF000000
OutputPaneForegroundColor : #FFFFFFFF
CommandPaneBackgroundColor : #FF000000
ScriptPaneBackgroundColor : #FF000000
ScriptPaneForegroundColor : #FF000000
ShowWarningForDuplicateFiles : True
ShowWarningBeforeSavingOnRun : True
UseLocalHelp : True
CommandPaneUp : True
于 2009-06-21T04:13:11.207 回答