C# (TOOLBOXLARI ÖĞRENMEK İÇİN BASİT BİR UYGULAMA)
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 WindowsFormsApplication12
{
public partial class Form1 : Form
{
double toplamF = 0.0;
string[] meyveler = { "Elma", "Armut", "Domates", "Patlican", "Portakal" };
double[] meyveF = { 1.0, 2.5, 2.0, 2.5, 3.0 };
public Form1()
{
InitializeComponent();
for (int i = 0; i < meyveler.Length;i++ )
comboBox1.Items.Add(meyveler[i]);
comboBox1.Text = "Seçiniz";
}
public void Bekle_Click(object sender, EventArgs e)
{
int kg;
bool kadet = Int32.TryParse(textBox2.Text, out kg);
if (kadet && kg > 0 && comboBox1.Text.Length > 0 && textBox2.Text.Length > -1)
{
Lav.Items.Add(comboBox1.Text);
Lkg.Items.Add(kg + "Kg");
for (int i = 0; i < meyveler.Length; i++)
{
if (comboBox1.Text == meyveler[i])
{
LtoplamF.Items.Add(kg * meyveF[i] + "TL");
toplamF += meyveF[i] * kg;
Latutar.Text = toplamF.ToString() + "TL";
}
}
comboBox1.Text = "Seçiniz";
textBox2.Text = "";
}
}
private void button1_Click_1(object sender, EventArgs e)
{
this.Close();
}
private void button2_Click(object sender, EventArgs e)
{
int secilen=Lav.SelectedIndex;
if(secilen >-1)
{
double t;
double k = (double)LtoplamF.Items[secilen];
bool kb = double.TryParse(Latutar.Text, out t);
t-=k;
Latutar.Text=t.ToString();
Lav.Items.RemoveAt(secilen);
Lkg.Items.RemoveAt(secilen);
LtoplamF.Items.RemoveAt(secilen);
}
}
}
}
Kaydol:
Kayıt Yorumları (Atom)
Spring Boot Uygulamasını Heroku üzerinde Deploy Etme
Bu yazımızda sizlere spring boot ile yazılmış basit bir Rest api'nin heroku üzerinde nasıl deploy edebileceğimizi göstereceğim. Önce ...
-
Bu yazımda hobi olarak ilgilendiğim bug bounty'i anlatmaya çalışacağım. Daha sonra bu konu üzerinde kendimizi geliştirmek için neler yap...
-
Flip-Flop doğruluk tabloları girişlerin durumuna bağlı olarak çıkışların ne olması gerektiğini anlatan tablolardır. Kısaca bir doğruluk tabl...
Hiç yorum yok:
Yorum Gönder