0

我试图让用户在我的 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 类的成员。

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

4

1 回答 1

0

为了编译它,您需要从表单类中调用它。

于 2012-04-26T19:07:32.683 回答