C# Windows Form örneği ile kenarları kullanıcı tarafından girilen dikdörtgenin alanı ve çevresini Fonksiyon (metot) kullanarak bulalım.
Örnekte AlanBul ve CevreBul metotlar oluşturularak bu metotlara kısa kenar ve uzun kenar uzunlukları parametre olarak gönderilerek
geriye dönen değer Label’ de gösterilecektir.
Form Tasarımı:
AlanBul Metodu için Kodlar:
1 2 3 4 5 6 7 |
public int AlanBul(int kk,int uk) { int alan = kk * uk; return alan; } |
CevreBul metodu için kodlar:
1 2 3 4 5 6 7 |
public int CevreBul(int kk,int uk) { int cevre = (uk + kk) * 2; return cevre; } |
Button1_Click için kodlar:
1 2 3 4 5 6 7 8 9 10 |
private void button1_Click(object sender, EventArgs e) { int kisa, uzun; kisa = Convert.ToInt32(txtKisa.Text); uzun = Convert.ToInt32(txtUzun.Text); lblAlan.Text = "Alan : " + AlanBul(kisa, uzun); lblCevre.Text = "Çevre : " + CevreBul(kisa, uzun); } |
Kodların Tümü:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
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 metot_dikdortgen { public partial class Form1 : Form { public Form1() { InitializeComponent(); } public int AlanBul(int kk,int uk) { int alan = kk * uk; return alan; } public int CevreBul(int kk,int uk) { int cevre = (uk + kk) * 2; return cevre; } private void Form1_Load(object sender, EventArgs e) { this.BackColor = Color.Chocolate; } private void button1_Click(object sender, EventArgs e) { int kisa, uzun; kisa = Convert.ToInt32(txtKisa.Text); uzun = Convert.ToInt32(txtUzun.Text); lblAlan.Text = "Alan : " + AlanBul(kisa, uzun); lblCevre.Text = "Çevre : " + CevreBul(kisa, uzun); } } } |
Video:
Add Comment