In my C# windows application solution I've got a Reporting project which contains many datasets. Those datasets are loading to the toolbox automatically. I think that makes my visual studio slower. Is there anyway to stop loading them?
Thanks!
you can add
[DesignTimeVisible(false)]
[ToolboxItem(false)]
to the classes that you want to hide from the designer. more info from msdn here and here