提交 8cdfbe2a 编写于 作者: C CyrusNajmabadi

Remove file.

上级 c0dfdc67
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Completion;
using Microsoft.CodeAnalysis.CSharp.Completion;
using Microsoft.VisualStudio.LanguageServices.Implementation.Options;
namespace Microsoft.VisualStudio.LanguageServices.CSharp.Options
{
internal partial class IntelliSenseOptionPageControl : AbstractOptionPageControl
{
public IntelliSenseOptionPageControl(IServiceProvider serviceProvider) : base(serviceProvider)
{
InitializeComponent();
BindToOption(Show_completion_item_filters, CompletionOptions.ShowCompletionItemFilters, LanguageNames.CSharp);
BindToOption(Highlight_matching_portions_of_completion_list_items, CompletionOptions.HighlightMatchingPortionsOfCompletionListItems, LanguageNames.CSharp);
BindToOption(InsertNewlineOnEnterWithWholeWord, CSharpCompletionOptions.AddNewLineOnEnterAfterFullyTypedWord);
BindToOption(ShowSnippets, CSharpCompletionOptions.IncludeSnippets);
BindToOption(ShowKeywords, CompletionOptions.IncludeKeywords, LanguageNames.CSharp);
BindToOption(BringUpOnIdentifier, CompletionOptions.TriggerOnTypingLetters, LanguageNames.CSharp);
}
private void BringUpOnIdentifier_Checked(object sender, System.Windows.RoutedEventArgs e)
{
ShowKeywords.IsEnabled = false;
ShowSnippets.IsEnabled = false;
ShowKeywords.IsChecked = true;
ShowSnippets.IsChecked = true;
}
private void BringUpOnIdentifier_Unchecked(object sender, System.Windows.RoutedEventArgs e)
{
ShowKeywords.IsEnabled = true;
ShowSnippets.IsEnabled = true;
}
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册