Grid 到 FoxPro DBF 的 C# 代码(自由表)

发布于 2024-11-16 02:21:32 字数 68 浏览 3 评论 0原文

打开 FoxPro DBF 表并将其链接到 WPF 中的 DataGrid 的最简单方法(无需安装额外的驱动程序)是什么?

What is the easiest way (without installing extra drivers) to open a FoxPro DBF table and link it to a DataGrid in WPF?

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

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

发布评论

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

评论(4

小伙你站住 2024-11-23 02:21:32

我想这与 WPF 没有任何关系。您可以将几乎任何 .net 集合/数据收集器对象链接到 WPF 数据网格。

但您的问题早在这之前就存在,并且涉及一般的 .net 数据访问。您应该从问题中删除 WPF 标记,而查看 ADO 是什么。网可以为您做的。

一旦完成此操作并且您的 FoxPro 数据库的内容位于 .net 集合中,那么您将担心 WPF ;)

I guess this as nothing do do specificaly with WPF. You can link almost any .net collection/data collector object to WPF data grid.

But your problem stands way before that and concerns .net data access in general. You should remove the WPF tag from your question and rather see what ADO. net can do for you.

Once this is done and that you have the content of your FoxPro db in a .net collection, then you will worry about WPF ;)

三生殊途 2024-11-23 02:21:32

我认为如果不安装驱动程序这是不可能的。请参阅此问题

i don't think this is possible without driver installation. see this question.

不爱素颜 2024-11-23 02:21:32

有多种方法可以在不安装新驱动程序的情况下完成此操作,但如果这些方法很简单,则没有一种方法可以实现。

您可以在文件级别检查表 - 结构记录在此处: http://fox .wikis.com/wc.dll?Wiki~TableFileStructure

或者您可以编写一个 VFP exe,您可以从 C# 代码运行该程序,将表转储为 XML。有关详细信息,请参阅 CURSORTOXML 函数。

写在我的 iPhone 上。

There are ways to do it without installing new drivers but none if them are easy.

You could inspect the table at the file level - the structure is documented here: http://fox.wikis.com/wc.dll?Wiki~TableFileStructure

Or you could write a VFP exe that you can run from your C# code that dumps the table to XML. See the CURSORTOXML function for more details.

Written on my iPhone.

清泪尽 2024-11-23 02:21:32

您知道如何使用基本的 ADO.Net 连接到 FoxPro DBF 表并创建类型化数据集吗?这是你开始工作的第一步。从这里开始,任务就变成将 WPF DataGrid 绑定到类型化数据集。

Do you know how to use basic ADO.Net to connect to a FoxPro DBF table and create a Typed DataSet? That's the first step you've got to get working. From there, the task becomes binding a WPF DataGrid to a Typed DataSet.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文