12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace IS31GrankinStudents
- {
- public partial class Form5 : Form
- {
- public Form5()
- {
- InitializeComponent();
- }
- private void оценкиBindingNavigatorSaveItem_Click(object sender, EventArgs e)
- {
- this.Validate();
- this.оценкиBindingSource.EndEdit();
- this.tableAdapterManager.UpdateAll(this._Is_32_podrezovDataSet);
- }
- private void Form5_Load(object sender, EventArgs e)
- {
- // TODO: данная строка кода позволяет загрузить данные в таблицу "_Is_32_podrezovDataSet.оценки". При необходимости она может быть перемещена или удалена.
- this.оценкиTableAdapter.Fill(this._Is_32_podrezovDataSet.оценки);
-
- }
- private void средний_баллTextBox_TextChanged(object sender, EventArgs e)
- {
-
- }
- private void button1_Click(object sender, EventArgs e)
- {
- double oc1 = Convert.ToDouble(оценка_1TextBox.Text);
- double oc3 = Convert.ToDouble(оценка_3TextBox.Text);
- double oc2 = Convert.ToDouble(оценка_2TextBox.Text);
- double sr = (oc1 + oc3 + oc2) / 3;
- средний_баллTextBox.Text = sr.ToString();
- }
- }
- }
|