issue on toolbox menu. im now working on a project that need videosource player on my windows form. i already add it but why the menu didn't show up in toolbox. and already try to repeat it too but the result is still same. or there is another way to add

abdul rahman alif putra 0 Reputation points
2024-03-31T05:50:17.7+00:00

User's image

Windows Forms
Windows Forms
A set of .NET Framework managed libraries for developing graphical user interfaces.
1,832 questions
.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,395 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Jiale Xue - MSFT 32,076 Reputation points Microsoft Vendor
    2024-04-01T02:41:12.37+00:00

    Hi @abdul rahman alif putra ,Welcome to Microsoft Q&A,

    When I add the AForge namespace in the nuget center, I can add the target control you mentioned correctly.

    It is recommended that you clean the project or recreate it to add it.

    enter image description here

    In addition to dragging and dropping directly, you can also add directly using code.

    For example:

    AForge.Controls.VideoSourcePlayer player=new AForge.Controls.VideoSourcePlayer();
    this.Controls.Add(player);;
    

    Best Regards,

    Jiale


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment". 

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.