arkadaşlar merhaba butona tıklandığını if ile nasıl kontrol edebilirim if li yere butona tıklandıysanın kodu gelicek
Products newProduct()
{
Products product = new Products();
if (true)
{
product.ProductId = Convert.ToInt32(tbxId.Text);
}
product.ProductName = tbxProductName.Text;
product.ProductBarcode = tbxProductBarcode.Text;
product.BuyingPrice = Convert.ToDecimal(tbxBuyingPrice.Text);
product.SalesPrice = Convert.ToDecimal(tbxSalePrice.Text);
product.StockRemaining = default;
return product;
}