How to implement a shortcut in WinForms?

Amazon has an address correction feature, and I want to implement something like this.

alt text

One of the problems that I encountered is to create a shortcut that supports various formatting (for example, in the image).

I could override the browser or richtextbox control, but this seems like a massive overkill. Is there something simpler? Perhaps the implementation of RichLabel Lite (I just did this).

+3
source share
1 answer

Have a look here at Codeproject on how to use the RichText shortcut using RTF.

+2
source

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


All Articles