在 winforms 应用程序中使用类型化数据集/绑定源时获取当前行的详细信息

发布于 2024-08-24 02:59:04 字数 53 浏览 2 评论 0原文

仅当列中存在特定值时,我才想删除网格中的当前行。

如何获取当前行的详细信息?

I want to delete the current row in a grid only if a specific value exists in a column.

How can I get the details for the current row?

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

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

发布评论

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

评论(2

╭⌒浅淡时光〆 2024-08-31 02:59:04

以下代码可以满足您的需求:

// Get the context.
BindingContext context = myGrid.BindingContext;

// Get the currency manager.
BindingManagerBase manager = context [myDataset, "MyTable"];

// Get the current row view.
DataRowView rowView = (DataRowView) manager.Current;

// Assume you have a bit field and want to get its value
bool flag = (bool) rowView ["MyBitField"];

希望这会有所帮助。

The following code does what you want:

// Get the context.
BindingContext context = myGrid.BindingContext;

// Get the currency manager.
BindingManagerBase manager = context [myDataset, "MyTable"];

// Get the current row view.
DataRowView rowView = (DataRowView) manager.Current;

// Assume you have a bit field and want to get its value
bool flag = (bool) rowView ["MyBitField"];

Hope this helps.

沙与沫 2024-08-31 02:59:04

根据您的需要,访问 CurrentRow 的 (DataGridViewRow) 单元格或 DataBoundItem 项。您必须将 DataBoundItem 对象转换为强类型数据行。

Dim oRow As FooDataRow = DirectCast(CurrentRow.DataBoundItem, FooDataRow)

Access the CurrentRow's (DataGridViewRow) Cells or DataBoundItem items, depending on your needs. You will have to cast the DataBoundItem object to your strongly-typed data row.

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