4

在 Visual Studio 扩展中,我定义了一个 VSPackage,其中包含许多命令。在其中一个命令的处理程序中,我使用以下代码设置了用户设置:

SettingsManager settingsManager = new ShellSettingsManager(this);
WritableSettingsStore userSettingsStore = settingsManager.GetWritableSettingsStore(SettingsScope.UserSettings);

userSettingsStore.SetBoolean("Text Editor", "Visible Whitespace", true);

这成功地设置了注册表中的值(在HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0Exp\Text Editor隔离外壳的情况下),但编辑器不会自动收到更改通知,即空白保持隐藏状态。编辑 > 高级 > 显示空白处的菜单选项也保持关闭状态。重新启动 Visual Studio 会获取更改。

如何告诉 Visual Studio 刷新其用户设置的状态,以便其他所有内容都收到更改通知?

4

1 回答 1

6

ITextView当打开a 时,我得到了正确的命令。这很重要,因为如果ITextView它没有打开,在我看来命令只是失败了。更快的方法是创建一个 Editor Margin 扩展项目(必须安装 VS SDK)。在EditorMargin课堂上这样做:

    [Import]
    private SVsServiceProvider _ServiceProvider;

    private DTE2 _DTE2;

    public EditorMargin1(IWpfTextView textView)
    {
        // [...]

        _DTE2 = (DTE2)_ServiceProvider.GetService(typeof(DTE));

        textView.GotAggregateFocus += new EventHandler(textView_GotAggregateFocus);
    }

    void textView_GotAggregateFocus(object sender, EventArgs e)
    {
        _DTE2.Commands.Raise(VSConstants.CMDSETID.StandardCommandSet2K_string,
            (int)VSConstants.VSStd2KCmdID.TOGGLEVISSPACE, null, null);

        //  The following is probably the same
        // _DET2.ExecuteCommand("Edit.ViewWhiteSpace");
    }

注意:IWpfTextViewCreationListener如果您不想创建保证金,应该足够了。了解 MEF 扩展以使用它。

现在,这个设置可能是在 VS2010 之前的 Tools -> Options 页面中控制的。该页面的其他选项可以通过 DTE 自动化进行控制:

_DTE2.Properties["TextEditor", "General"].Item("DetectUTF8WithoutSignature").Value = true;
_DTE2.Properties["Environment", "Documents"].Item("CheckLineEndingsOnLoad").Value = true;

ShellSettingsManager只是关于写入注册表,没有设置刷新功能(如果存在,它无论如何都不会有效,因为它必须重新加载整个设置集合)。以前的那些是我正在寻找的。解决你的问题是一个奖励:)

于 2013-06-22T12:14:03.237 回答