温索克组件
我在一个有事件的类库中有一个用 vb.net 制作的 Winsock 组件。
如果我在另一个项目中引用该 dll,如何使其出现在工具箱中?
我如何在我的 C# 程序中使用它?
谢谢
i have a winsock component made with vb.net in a class library that has events.
how do i make it appear in tool box if i reference the dll in another project.?
How do i use it in my c# program?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它是已在您的 PC 上正确注册的正确组件,您只需右键单击工具箱并选择选择工具箱项目,这将为您提供描述的对话框此处。
否则,只需添加对该类的引用并创建一些事件处理程序。只需在 google 中搜索自定义事件处理程序 c#,您应该会找到大量示例/教程,例如 此 链接看起来以一种很好且简单的方式显示了它。
If it's a proper component that's been registered properly on your PC you can just right click on the ToolBox and select Choose Toolbox Items which gives you the dialog described here.
Otherwise, just add a reference to the class and create some eventhandlers. Just search google for custom eventhandlers c# and you should find plenty of samples/tutorial, for example this link looks like it shows it in a nice and easy way.