使用 Windows Form 的 .Net 4 中的图表和绘图

发布于 2024-12-29 03:56:10 字数 169 浏览 0 评论 0原文

我在 Visual Studio 2010 中使用 Windows Form 和 .Net 4。我需要做一些交叉图,并且希望有一些功能,如光标和放大和缩小。

我尝试使用 ZedGraph,但无法将其控制器添加到工具箱。不知道是我操作错误还是不兼容。

您有什么建议吗?

谢谢你!

I am using Windows Form and .Net 4 in Visual Studio 2010. I need to do some cross-plots, and would like to have a few features, as cursor and zoom in and out.

I tried to use ZedGraph, however I was not able to add its controller to the toolbox. I don't know if I have done something wrong or if it is not compatible.

Do you have any suggestions?

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一向肩并 2025-01-05 03:56:11

首先,我假设您使用的是 WinForms(而不是 WPF)。

  1. 将 ZedGraph DLL 的引用添加到您的项目中
    • 在解决方案资源管理器中右键单击引用,然后选择“添加引用”
    • 选择浏览选项卡并找到 ZedGraph.dll(如果需要,还可找到 ZedGraph.Web.dll
  2. 重建项目 (F6)
  3. 在工具箱中,检查 ZedGraphControl 是否已出现在 Components 下。

此控件可以添加到表单的设计布局中。

或者,添加引用后,您可以使用以下代码将图形添加到表单中:

using ZedGraph;

ZedGraphControl myZedGraphControl = new ZedGraphControl();
// set size, location, etc. properties
form1.Controls.Add(myZedGraphControl);

First, I'll assume you are using WinForms (as opposed to WPF).

  1. Add references to the ZedGraph DLLs to your project
    • Right-click references in the solution explorer and select Add Reference
    • Select the browse tab and locate ZedGraph.dll (also ZedGraph.Web.dll if needed)
  2. Rebuild the project (F6)
  3. In the Toolbox, check that ZedGraphControl has appeared under Components

This control can be added to the design layout of a form.

Alternatively, once you have the reference added, you can add a graph to a form in code with the following:

using ZedGraph;

ZedGraphControl myZedGraphControl = new ZedGraphControl();
// set size, location, etc. properties
form1.Controls.Add(myZedGraphControl);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文