//Pierwiastek i potęga
W button z wykorzystaniem dwóch textBox
double A, wynik;
A = Convert.ToDouble(textBox1.Text);
wynik=Math.Sqrt(A);
textBox2.Text=wynik.ToString();
W button z wykorzystaniem dwóch textBox
double A, B, wynik;
A = Convert.ToDouble(textBox1.Text);
B = Convert.ToDouble(textBox3.Text);
wynik = Math.Pow(A, B);
textBox2.Text = Convert.ToString(wynik);
/*MessageBox.Show("Wynik dzielenia: " + Dzielenie);*/
//Zamknij
Z wykorzystaniem menuStrip1
System.Windows.Forms.DialogResult koniec;
koniec=MessageBox.Show(“Czy zamknąć?”, “Uwaga”,
MessageBoxButtons.YesNoCancel,
MessagBoxIcon.Stop, MessageBoxDefaultButton.Button1);
if (koniec==System.Windows.Forms.DialogResult.Yes)
{
Close();
}
//Tablica
W Button z wykorzystaniem TextBox
int[] tabjed = new int[9];
tabjed[0] = 44;
tabjed[1] = 41;
tabjed[2] = 1;
tabjed[3] = 12;
tabjed[4] = 3;
tabjed[5] = 18;
tabjed[6] = 22;
tabjed[7] = 79;
tabjed[8] = 13;
for (int i = 0; i < tabjed.GetLength(0); i++)
{
textBox4.AppendText(tabjed[i] + "\r\n");
}
int min, max;
min = tabjed[0];
max = tabjed[0];
for (int i = 0; i < tabjed.GetLength(0); i++)
{
if (tabjed[i] < min)
{
min = tabjed[i];
}
if (tabjed[i] > max)
{
max = tabjed[i];
}
}
textBox4.AppendText("minimalna wartość: "
+ min.ToString() + "\r\n");
textBox4.AppendText("maksymalna wartość: "
+ max.ToString() + "\r\n");
//Wykres
W button z
double[,] tabD = new double[2, 5];
tabD[0, 0] = 0;
tabD[0, 1] = 1;
tabD[0, 2] = 2;
tabD[0, 3] = 3;
tabD[0, 4] = 4;
tabD[1, 0] = 8;
tabD[1, 1] = 1;
tabD[1, 2] = 4;
tabD[1, 3] = 6;
tabD[1, 4] = 2;
for (int i=0; i<5; i++)
{
chart1.Series[0].Points.AddXY(TabD[0,i], tabD[1,i]);
}
//ProgresBar
W button
progressBar1.Minimum = 0;
progressBar1.Maximum = 100000;
for (int i = 0; i < 10000; i++)
{
progressBar1.Value += 10;
}
// czyszczenie progres bar w button
progressBar1.Value = 0;
//Wartości w ComboBox posortowane
W Button:
string[] tabStr = new string[3];
tabStr[0] = "Polska";
tabStr[1] = "Niemcy";
tabStr[2] = "Czechy";
comboBox1.Items.AddRange(tabStr);
// comboBox1.SelectedIndex = 0;
comboBox1.Sorted = true;
//Grafika w button z wykorzystaniem panel1
Graphics g = panel1.CreateGraphics();
Pen p = new Pen(Color.BlueViolet, 3);
Rectangle rect = new Rectangle(0, 0, 100, 100);
g.DrawRectangle(p, rect);
}
private void button2_Click(object sender, EventArgs e)
{
Graphics g = panel1.CreateGraphics();
Pen pióro = new Pen(Color.DarkKhaki, 3);
Point[] punkty =
{
new Point(0,100),
new Point(200,200),
new Point(200,0),
};
g.DrawPolygon(pióro, punkty);
}
private void button3_Click(object sender, EventArgs e)
{
Graphics g = panel1.CreateGraphics();
g.Clear(this.BackColor);
}
}