Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8480621
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T19:20:44+00:00 2026-06-10T19:20:44+00:00

I need a UI control for a windows forms application. I don’t know what

  • 0

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.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T19:20:45+00:00Added an answer on June 10, 2026 at 7:20 pm

    What you need is another Form with some customization (Perhaps removing the control box on top e.g. close, maximize and minimize). And you can open this form in your buttons MouseHover event.
    Something like:

    private void MyButton_MouseHover(object sender, EventArgs e)
    {
    //Assume that you made this form in designer
    var cutomForm = new CustomForm(); 
    //Set the opening location somewhere on the right side of main form, you can change it ofc
    cutomForm.Location = new Point(this.Location.X + this.Width, this.Height / 2);
    //Probably topmost is needed
    cutromForm.TopMust = true;
    customForm.Show();
    }
    

    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):

        private CustomForm _customForm;
    
         private void MyButton_MouseHover(object sender, EventArgs e)
        {
          //Check if customForm was perviously opened or not
          if(_customForm != null)
              return;
    
          //Assume that you made this form in designer
          _customForm= new CustomForm(); 
          //Set the opening location somewhere on the right side of main form, you can change it ofc
          _customForm.Location = new Point(this.Location.X + this.Width, this.Height / 2);
          //Probably topmost is needed
          _customForm.TopMust = true; 
    
          //Delegate to make form null on close
          _customForm.FormClosed += delegate { _customForm = null;};   
          _customForm.Show();
        }
    

    For keep both form moving together, you need to handle that in the Move event of your main form, something like:

    private void Form1_Move(object sender, EventArgs e)
    {
             if(_customForm != null)
             {
              //Not sure if this gonna work as you want but you got the idea I guess
              _customForm.Location = new Point(this.Location.X + this.Width, this.Height / 2);
    
             }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a windows phone application and I need to add a user control
I have a TreeView control in a Windows Forms application that is displaying my
I'm building a Windows Forms application which makes use of the WebBrowser control. Can
We have a Windows Forms application that uses a (third party) ActiveX control, and
In my C# Windows Forms application, I have a user control that contains other
How can I add the the sleek On/Off control to a Windows Forms application?
I need a control that can list data in 3 columns, I want to
I'm trying to build my own custom control for a windows forms application in
I need to display some portion of html in my windows forms application. It's
I have a c# Windows Forms application, using .NET 3.5. My machine environment is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.