Merhaba;
SANALKURS Ziyaretcileri, C# .net Framework 2.0 ile ilgili bir örnek yapalım.
Ekran çıktımız şu şekilde tasarlıyoruz;
Kodumuz;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Manav_Örneği
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int kilo = Convert.ToInt32(textBox1.Text);
listBox1.Items.Add(\"Elma :\" + 4 * kilo + \" \" + \"YTL\");
}
private void button2_Click(object sender, EventArgs e)
{
int kilo = Convert.ToInt32(textBox1.Text);
listBox1.Items.Add(\"Armut :\" + 5 * kilo+\" \"+\"YTL\");
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}