Visual Studio do not add my component (from a DLL) to the toolbox even if I reference it

大城市里の小女人 提交于 2019-12-18 05:43:17

问题


As stated in the title, I copied my DLL in Visual Studio project, set it to "content" and "copy always". Added a reference to this DLL and set it to "copy locally".

I successfully managed to instance my component to a form through code but it doesn't appear in the toolbox, really boring.

How can I solve this issue?

If I link directly the DLL project to this project it works, but now I'm treating the DLL as "external" so it's not part of the same solution of the DLL project.


回答1:


I had this problem with @AndrewFinnell's solution:

There are no components in 'c:....\XXXX.dll' that can be placed on the toolbox.

So I solved with drag and drop:

  • open Windows explorer and navigate to the DLL
  • drag the DLL and drop it on Visual Studio in the Toolbox, exactly where you want your components to appear.

I also realized that some components may have compatibility issues with certain .NET Framework versions. For instance A Professional Calendar/Agenda View That You Will Use seems not to work with .NET 4.5, while it does with .NET 4.




回答2:


  • Right-click in the toolbox.
  • Click "Choose Items..."
  • Click "Browse..."
  • Navigate to your DLL and click Open
  • Then click "Ok"

Your components should then show up




回答3:


The way I found to make this working is:

  1. Add the dll, reference it
  2. Compile the project
  3. Save the solution and restart visual studio

And then controls show up in toolbox (not always working, I think is a sort of visual studio bug)




回答4:


Like said above,

  1. I reference the DLL in the client project by: in Solution Explorer right click > Add Reference, at this time the custom control doesn't appear in the Toolbox.

  2. I save it and close the client project.

  3. I restart Visual Studio 2012 and reopen the client project. Now the custom control is in the Toolbox.

  4. I reopen the custom control project, make some modifications and compile.

  5. And the most important, all changes that I made in the DLL project automatically were updated in the client project without need to redo "Add Reference".




回答5:


Here is what I did.

After install the net 3.5 chart download from MSDN link, I manually copied the 3.5 chart dlls to my project and refer to them. Then, from the "choose item" of toolbox, browse to the dlls and add them into toolbox. Make sure the checkbox is checked for the "chart" in the "choose item" popup.

After these, the "chart" item in the toolbox should be available and enabled for .NET 3.5 project.

NOTE (I am using Visual Studio 2010. I think my solution should work for 2012.)




回答6:


I was having this same issue. I am working in Visual Studio 2010.

My user control library is written in C# and my project I'am importing it into is in Visual Basic.

If I had the C# project in my solution, the custom user controls would show up automatically. But if I only referenced the DLL it would not load the custom user controls from the referenced library into the "Toolbox".

The above post that mentions finding the file in explorer and dragging and dropping it into the toolbox solved the problem. This is a very strange way of behaving. VB user control libraries don't require this step.

This has been an issue I have had sitting on the burner for the last 2 years.

I would up-vote the previous answer but I don't have enough rep yet.

This post could use some better tags, cause it was buried on most of my google searches.

So

  1. Reference the user control library
  2. Drop the DLL file into the tool box.

One question I have in regards to this is: what happens if you change the project reference to the DLL (because it moved) and not attempt to update the toolbox reference (by removing the control from the toolbox and dragging and dropping the DLL from the new location)?




回答7:


I tried following the other answers (thanks to all of you!), but I got this problem and I'll let you all know how I solved it and show my custom tools in toolbar (in VS 2017).

  1. Place the .ddl file in any Library Solution
  2. Then I add that .ddl as reference to my needed project
  3. Build the project and restart the Visual Studio
  4. Then, when I look into toolbox, my custom toolbox name appears in toolbar, when I expand that I got below message

    There are no Usable controls in this group. Drag an item onto this text to add in to toolbok

  5. I dragged the .dll and dropped under that text and then all my custom tools appeared in my toolbox.




回答8:


And add lib. to folder in your solution example solutionfolder/bin/debug and then add reference to object from this folder, finally rebuild, quit, come back, drag and drop dll from this solutionfolder/.../../ and it will probably appear.



来源:https://stackoverflow.com/questions/4621558/visual-studio-do-not-add-my-component-from-a-dll-to-the-toolbox-even-if-i-refe

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!