I need a UI control for a windows forms application. I don’t know what the name of such UI is but I can describe what I want: I can to have a button on my form that when I hover the mouse over it, the CONTROL which I am looking for gets opened beside my form with animation and I want to add some buttons in that control. What is that control? Is there any such control in RAD Controls which I can use? I really appreciate your help.
Share
What you need is another
Formwith some customization (Perhaps removing the control box on top e.g. close, maximize and minimize). And you can open this form in your buttonsMouseHoverevent.Something like:
As for animation, you can search for animation for winformws on google.Or look here and there, something like : WinForms animation
Regarding your other question
If you want the new opened form to move with your move, then you need some changes. First you need to have the new form as a field in your code (then the button hover also should be changed):
For keep both form moving together, you need to handle that in the
Moveevent of your main form, something like: