How to display IntelliSense Babel icons in WPF?

  • How to display these “Babel IntelliSense Icons” in a WPF app?

    • Where to find these badges?

    • Is there any API to get these icons?

(I'm going to develop an intellisense function in a WPF function, when the user enters a text box, these icons will be displayed.)

Many thanks.

enter image description here

+4
source share
2 answers

These icons are internal to Visual Studio. You can probably go wrong in the VS DLLs to find them, although there are no guarantees. I would like to note that these icons are actually copyrighted by Microsoft, so using them in your program is likely to be illegal; I am not a lawyer, but consult with him if you plan to follow this route.

+2
source

http://msdn.microsoft.com/en-us/library/ie/bb166017.aspx

This should indicate the right direction.

+1
source

Source: https://habr.com/ru/post/1414804/


All Articles