How to add a button to Visual Studio Intellisense

前端 未结 2 1821
渐次进展
渐次进展 2021-02-01 14:49

I would like to add a button to the top of the list of options returned by Visual Studio\'s IntelliSense. When the button is clicked, my custom code will be executed (which wil

2条回答
  •  爱一瞬间的悲伤
    2021-02-01 15:14

    In the IntelliSense property page, clear text box options or check box options for IntelliSense features that you do not want:

    Show completion list after a character is typed
    
    Committed by typing the following characters
    
    Committed by pressing the space bar
    
    IntelliSense pre-selects most recently used members applies to IntelliSense for Most Recently Used Members
    

    For more information, see IntelliSense, C#, Text Editor, Options Dialog Box

提交回复
热议问题