C# WPF DataGrid 在列中搜索一个值,返回行索引

标签 c# wpf datagrid

我是 C# 开发的新手。我在编写应用程序时正在学习和挣扎 - 最好的学习方法是通过实践:)

我希望有人能够帮助我解决我的问题。

我正在通过 dataGrid1.ItemsSource = dt.DefaultView; 填充 WPF DataGrid 然后让 DataGrid 自动为我生成列。

用户可以单击 DataGrid 中的任何行,然后用该行的数据填充我在 WPF UI 上的标题部分 - 这允许用户通过标题编辑该行。我不希望他们通过 DataGrid 进行编辑。

用户可以通过标题字段编辑行,然后单击“更新”按钮。 UPDATE 按钮将运行一个存储过程,该过程处理记录的所有验证和更新。保存记录后,我将触发网格刷新方法。

网格刷新后,我需要能够搜索 DataGrid 上的特定列,以便选择、设置焦点并滚动到刚刚更新的行。

我在 Google 上疯狂搜索,但我就是找不到如何在 DataGrid 上执行此操作。有关于如何在 DataGridView 上执行此操作的示例,这不是我正在使用的。

非常感谢任何帮助....谢谢

这是我的按钮点击代码

private void btn_Update_Click(object sender, RoutedEventArgs e) {

        // variables
        bool isOkToUpdate = true;

        this.Cursor = Cursors.Wait;            

        // Validations of certain fields
        if (txt_FinanceEmpName.Text.Length > 25 )
        {
            MessageBox.Show("The Finance Emp Name must not exceed 25 characters in length. " 
                + txt_FinanceEmpName.Text.Length.ToString()
                , "Maximum characters exceeded"
                , MessageBoxButton.OK, MessageBoxImage.Stop);

            isOkToUpdate = false;
        }

        //
        if (isOkToUpdate == true)
        {
            // create an instance
            DatabaseClass objDatabaseClass = new DatabaseClass(_connectionString);

            // if we are able to open and close the SQL Connection then proceed
            if (objDatabaseClass.CheckSQLConnection())
            {
                try
                {
                    // create instance of SqlConnection class. variable 'con' will hold the instance
                    SqlConnection con = new SqlConnection(_connectionString);

                    con.Open();

                    // use a using for all disposable objects, so that you are sure that they are disposed properly
                    using (SqlCommand cmd = new SqlCommand("usp_mktdata_update_cm_mktdata_emp_name_fits_to_finance", con))
                    {
                        cmd.CommandType = CommandType.StoredProcedure;
                        cmd.Parameters.Add("@IdUnique", SqlDbType.Int).Value = Convert.ToInt32(txt_IdUnique.Text);
                        cmd.Parameters.Add("@FinanceEmpName", SqlDbType.VarChar).Value = txt_FinanceEmpName.Text;
                        cmd.Parameters.Add("@ADWindowsLogon", SqlDbType.VarChar).Value = _windowsUserName;
                        cmd.Parameters.Add("@ADWindowsLogonEMail", SqlDbType.VarChar).Value = _windowsUserNameEMail;
                        cmd.Parameters.Add("@IndActive", SqlDbType.TinyInt).Value = 1;
                        cmd.Parameters.Add("@RecordVersion", SqlDbType.Int).Value = Convert.ToInt32(txt_RecordVersion.Text);
                        //cmd.Parameters.Add("@IdJob", SqlDbType.Int).Value = "DEFAULT";
                        //cmd.Parameters.Add("@IdUser", SqlDbType.Int).Value = "DEFAULT";
                        //cmd.Parameters.Add("@outIdUnique", SqlDbType.Int).Value = "DEFAULT";
                        //cmd.Parameters.Add("@outRecordVersion", SqlDbType.Int).Value = "DEFAULT";
                        //cmd.Parameters.Add("@outInd", SqlDbType.Int).Value = "DEFAULT";
                        //cmd.Parameters.Add("@outMessage", SqlDbType.VarChar).Value = "DEFAULT";

                        cmd.ExecuteNonQuery();
                    }

                    // Last Updated Record
                    txt_LastUpdated_IdUnique.Text = txt_IdUnique.Text;
                    txt_LastUpdated_FitsEmpName.Text = txt_FitsEmpName.Text;
                    txt_LastUpdated_FinanceEmpName.Text = txt_FinanceEmpName.Text;

                    // Refresh the Datagrid - the DataGrid_MonikerName
                    // pass in null for the params in order to fire the event
                    btn_RefreshGrid_Click(null, null);



                    // ****************************************
                // TODO:  After Grid Refresh Search the column ID UNIQUE for the value stored in txt_IdUnique.Text which
                //  was just saved via the stored procedure
                // Once the value is found in the DataGrid need to grab the DataGrid Row INdex in order to 
                // Select the ROW and Set the ROW to the SELECTED ROW and set focus to the DataGrid also will need to Scroll the Grid into View.
                    //
                    // ****************************************


                    con.Close();
                }
                catch (SqlException ex)
                {
                    MessageBox.Show(ex.ToString());                    
                }
            }
            else
            {
                MessageBox.Show("Connection not established to the SQL Server. " + Environment.NewLine + "The SQL Server may be offline or valid credentials are not yet granted.", "SQL Server Connection Error", MessageBoxButton.OK, MessageBoxImage.Error);

                this.Close();
            }
        }   

        this.Cursor = Cursors.Arrow;
    }

最佳答案

我也在为我们系统中的网格使用 DataTable.DefaultView。我还为“MyDataGrid”对 DataGrid 进行了子分类...在 MyDataGrid 上,我有一个自定义方法来根据其主键强制加载给定的 ID。所以我在网格上有另一个自定义属性,主键列的名称是什么,因为它应该在数据 View 中找到,即使它可能不会在网格中直观显示。

根据您提供的内容,这里是从我的原始代码到您的特定环境的修改...

public void TryGridRefresh()
{
   int IDToFind = Convert.ToInt32(txt_IdUnique.Text);

   if (IDToFind > -1 && dataGrid1.ItemsSource is DataView )
   {
      foreach( DataRowView drv in (DataView)dataGrid1.ItemsSource )
         if ((int)drv["IdUnique"] == IDToFind)
         {
            // This is the data row view record you want...
            dataGrid1.SelectedItem = drv;
         }
   }
}

所以,就在您调用

 btn_RefreshGrid_Click(null, null);

然后调用

TryGridRefresh();

我将我的数据网格作为所选值的整个行而不是每个单元格。因此,您可能需要稍微尝试一下对象引用...找到该行后,您还可以尝试使用 dataGrid1.CurrentItem...

希望这能让您更接近最终的解决方案。

关于C# WPF DataGrid 在列中搜索一个值,返回行索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28860612/

相关文章:

c# - 如何在 windows azure 上使用 asp.net 成员(member)资格?

c# - 使用 c# 和 Microsoft Word Interop 在 Word 中填写字段

c# - 获取WP8的唯一ID

c# - 如何验证 Guid 数据类型?

c# - 拖放数据网格

c# - Wpf 数据网格滚动条卡住

WPF MvvM DataGrid 动态列

c# - 使用 C# 创建的 ZipArchive 不包含任何条目

c# - 我可以在控件的内容属性中使用符号 "<-"吗?

wpf - 有没有办法在 XAML 中链接多个值转换器?