Form5.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace IS31GrankinStudents
  11. {
  12. public partial class Form5 : Form
  13. {
  14. public Form5()
  15. {
  16. InitializeComponent();
  17. }
  18. private void оценкиBindingNavigatorSaveItem_Click(object sender, EventArgs e)
  19. {
  20. this.Validate();
  21. this.оценкиBindingSource.EndEdit();
  22. this.tableAdapterManager.UpdateAll(this._Is_32_podrezovDataSet);
  23. }
  24. private void Form5_Load(object sender, EventArgs e)
  25. {
  26. // TODO: данная строка кода позволяет загрузить данные в таблицу "_Is_32_podrezovDataSet.оценки". При необходимости она может быть перемещена или удалена.
  27. this.оценкиTableAdapter.Fill(this._Is_32_podrezovDataSet.оценки);
  28. }
  29. private void средний_баллTextBox_TextChanged(object sender, EventArgs e)
  30. {
  31. }
  32. private void button1_Click(object sender, EventArgs e)
  33. {
  34. double oc1 = Convert.ToDouble(оценка_1TextBox.Text);
  35. double oc3 = Convert.ToDouble(оценка_3TextBox.Text);
  36. double oc2 = Convert.ToDouble(оценка_2TextBox.Text);
  37. double sr = (oc1 + oc3 + oc2) / 3;
  38. средний_баллTextBox.Text = sr.ToString();
  39. }
  40. }
  41. }