using System; using System.Windows.Forms; namespace Amp12A_603_StokTakipProgramı.Pages { public partial class AnaSayfa : Form { public AnaSayfa() { InitializeComponent(); } private void InitializeComponent() { this.Text = "Satış İşlemleri"; this.ClientSize = new System.Drawing.Size(800, 600); // Tedarikçi işlemleri, Ürün işlemleri, vb. için menü MenuStrip menu = new MenuStrip(); ToolStripMenuItem tedarikciMenu = new ToolStripMenuItem("TEDARİKÇİ İŞLEMLERİ"); ToolStripMenuItem urunMenu = new ToolStripMenuItem("ÜRÜN İŞLEMLERİ"); ToolStripMenuItem satisDetayMenu = new ToolStripMenuItem("SATIŞ DETAYLARI"); ToolStripMenuItem musteriMenu = new ToolStripMenuItem("MÜŞTERİ İŞLEMLERİ"); ToolStripMenuItem personelMenu = new ToolStripMenuItem("PERSONEL İŞLEMLERİ"); menu.Items.Add(tedarikciMenu); menu.Items.Add(urunMenu); menu.Items.Add(satisDetayMenu); menu.Items.Add(musteriMenu); menu.Items.Add(personelMenu); // Menü çubuğunu formda göster this.MainMenuStrip = menu; this.Controls.Add(menu); // Müşteri Telefonu Label ve TextBox Label lblMusteriTelefon = new Label(); lblMusteriTelefon.Text = "Müşteri Telefon:"; lblMusteriTelefon.Location = new System.Drawing.Point(500, 50); this.Controls.Add(lblMusteriTelefon); TextBox txtMusteriTelefon = new TextBox(); txtMusteriTelefon.Location = new System.Drawing.Point(600, 50); this.Controls.Add(txtMusteriTelefon); // Müşteri Bilgisi Label ve TextBox Label lblMusteri = new Label(); lblMusteri.Text = "Müşteri:"; lblMusteri.Location = new System.Drawing.Point(500, 80); this.Controls.Add(lblMusteri); TextBox txtMusteri = new TextBox(); txtMusteri.Location = new System.Drawing.Point(600, 80); this.Controls.Add(txtMusteri); // Ürün Listesi (ListView) ListView urunListesi = new ListView(); urunListesi.Location = new System.Drawing.Point(20, 50); urunListesi.Size = new System.Drawing.Size(450, 500); urunListesi.View = View.Details; urunListesi.Columns.Add("Kod", 50); urunListesi.Columns.Add("Ürün Adı", 150); urunListesi.Columns.Add("Miktar", 50); urunListesi.Columns.Add("Birim Fiyat", 100); urunListesi.Columns.Add("Toplam", 100); this.Controls.Add(urunListesi); // Ekle ve Sil Butonları Button btnEkle = new Button(); btnEkle.Text = "EKLE"; btnEkle.Location = new System.Drawing.Point(500, 150); btnEkle.Size = new System.Drawing.Size(80, 30); this.Controls.Add(btnEkle); Button btnSil = new Button(); btnSil.Text = "SİL"; btnSil.Location = new System.Drawing.Point(600, 150); btnSil.Size = new System.Drawing.Size(80, 30); this.Controls.Add(btnSil); // Satış Yap Butonu Button btnSatisYap = new Button(); btnSatisYap.Text = "SATIŞ YAP"; btnSatisYap.Location = new System.Drawing.Point(500, 500); btnSatisYap.Size = new System.Drawing.Size(180, 50); this.Controls.Add(btnSatisYap); // Genel Toplam Label ve TextBox Label lblGenelToplam = new Label(); lblGenelToplam.Text = "Genel Toplam:"; lblGenelToplam.Location = new System.Drawing.Point(500, 450); this.Controls.Add(lblGenelToplam); TextBox txtGenelToplam = new TextBox(); txtGenelToplam.Location = new System.Drawing.Point(600, 450); this.Controls.Add(txtGenelToplam); } [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } }