gpt4 book ai didi

c++ - 如何将用户输入的数据从 datagridview 获取到 Windows 窗体图表?

转载 作者:行者123 更新时间:2023-11-28 03:38:24 25 4
gpt4 key购买 nike

我试图将用户在 Windows 窗体 DataGridView 中输入的数据转换为 Windows 窗体图表,但我不知道该怎么做。我什至不知道如何从 datagridview 中获取用户输入的数据。

我一直在尝试在 Visual Studio 中设置本地数据库,但我使用的是 C++,而 VC++ 2010 中对数据库的支持似乎已被删除。我也尝试过建立一个 SQLite 数据库,但没有成功。

有没有办法在不使用数据库或使用 Microsoft 选项之外的其他数据库的情况下将用户输入的数据从数据 GridView 获取到图表?

谢谢!

最佳答案

我一直在寻找同样的问题,试试这个-> http://www.functionx.com/vccli/controls/dgv.htm , 让我知道是否有帮助

编辑:

这只是我在下面发布的代码,放在原始答案中并且格式更好:

我同时也在研究这个问题。编辑值的工作:

System::String^ dur;
this->dataGridView1->Rows[1]->Cells[1]->Value = dur;

这将在数据网格中给出值:

 System::String^ foo;
foo = (System::String^)this->dataGridView1->Rows[1]->Cells[1]->Value;

这也会给出值,但您不能编辑它:

System::String^ derp;<br/>
this->dataGridView1->CurrentCell = this->dataGridView1[1,1];<br/>
derp = (System::String^)this->dataGridView1->CurrentCell->Value;

没有尝试写或读

this->dataGridView1[1,1]->View;

但我认为这也可能有效。

关于c++ - 如何将用户输入的数据从 datagridview 获取到 Windows 窗体图表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10165980/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com