معرفی 2 سایت جهت آموزش WPF
http://www.wpf-tutorial.com
http://www.wpftutorial.net
معرفی 2 سایت جهت آموزش WPF
http://www.wpf-tutorial.com
http://www.wpftutorial.net
کد خواندن یکی ار خانه های DataGrid View
txt_edit_id.Text =dataGridView1.Rows[e.RowIndex].Cells[0].Value.ToString();
cmd_DelStudent.CommandText = "stp_DelStudent";
cmd_DelStudent.CommandType = CommandType.StoredProcedure;
cmd_DelStudent.Parameters.Add(new System.Data.SqlClient.SqlParameter("@id", System.Data.SqlDbType.NVarChar));
cmd_DelStudent.Connection = conn;
cmd_DelStudent.Parameters["@id"].Value = txt_dell_id.Text;
conn.Open();
cmd_DelStudent.ExecuteNonQuery();
DataTable dt;
SqlConnection conn = new SqlConnection(_ConnectionString);
SqlCommand cmd_Report = new SqlCommand();
SqlDataAdapter adp_Report = new SqlDataAdapter();
cmd_Report.CommandText = "stp_SelectStudent";
cmd_Report.CommandType = CommandType.StoredProcedure;
cmd_Report.Connection = conn;
adp_Report.SelectCommand = cmd_Report;
dt = new DataTable();
adp_Report.Fill(dt);
dataGridView1.DataSource = dt;
کلاس naghsh dbConnect جهت استفاده دانشجویان دوره ها
البته این ورژن 1 این کلاس می باشد که نسخه های پیشرفته آن در دروره ورکشاپ ارایه می گردد