gpt4 book ai didi

c# - DevExpress XtraGrid v12.2 GetSelectedRow

转载 作者:太空宇宙 更新时间:2023-11-03 13:25:37 27 4
gpt4 key购买 nike

我正在使用 DevExpress v12.2 开发我的 C# 应用程序,所以我正在使用 GridControl ToolBox,问题是没有属性可以从 GridContol 甚至他的索引中获取选定的行。另一个问题 SelectionChanged 事件也不存在,该问题已在 v13.2 上修复,但我必须使用 DevExpress v12.2。

我来这里是因为经过长时间的研究我没有找到任何解决方案,有什么建议吗?

我正在使用这段代码,它在我放置索引时有效:

        Client clients = new Client();
clients = (Client)gridControl1.MainView.GetRow(0); //0 is the index i put manually
MessageBox.Show(clients.ClientNom);

那么我如何获得 selectedindex 呢?谢谢。

最佳答案

我发现,解决方案是转到 GridControl 的 Desginer 并选择事件,在我的例子中是 RowClick,然后从那里处理:

     private void gridView1_RowClick(object sender, RowClickEventArgs e)
{
Client clients = new Client();

clients = (Client)gridControl1.MainView.GetRow(e.RowHandle);
MessageBox.Show(clients.Email);
}

感谢您的回答 AMR。ps : DevExpress GetSelected Rows V12.2不像proprety那样存在

关于c# - DevExpress XtraGrid v12.2 GetSelectedRow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22541081/

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