I have a class which adds some functionality to a windows form textbox. For example, it handles textbox key down event and based on some sort of logic, if 'Enter' was pressed then an special grid is shown to let the user select one entity from a large number of entities. So I call this class 'Textbox Extender' and the textbox 'Extended'.
Now, I want to make the user informed that whether a textbox is extended by changing it's back color, pretty easy to add this functionality to the class BUT: I am very suspecious it is against Single Responsibility Principle. Any idea is highly appreciated.