无法在我的应用程序中调用urlbuilder.Buildurl

时间:2012-04-26 18:49:24

标签: c# winforms url

我试图让用户在我的WinForms应用程序中使用GUI构建一个URL。我遇到了Urlbuilder.Buildurl。它似乎提供了我需要的东西。

http://msdn.microsoft.com/en-us/library/ms154075%28v=vs.80%29.aspx

// Launch the Url Builder using the specified control
// parent, initial URL, empty relative base URL path,
// window caption, filter string and URLBuilderOptions value.

不幸的是,提供的示例甚至都没有编译。

this.Component是一个未知成员。

有没有人用过这个,如果是的话,有什么建议我缺少什么?

我应该创建自己的对话框并使用System.UriBuilder(...)吗?

- 编辑 - 这个在表单类中。我根据文档引用了System.Design。

this.Component不是Form类的成员。

- 编辑 -
这个小bugger是Visual Studio在您选择URL时使用的内部编辑器,例如项目中的超链接URL或图像URL。不是我想要的。是时候建立那个对话了。

1 个答案:

答案 0 :(得分:0)

为了编译它,你需要在表单类中调用它。