bu şekilde işinize yararmı bilmiyorum ama örneği bırakıyorum
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 WindowsFormsApp8
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
int deger = 0;
private void RadioCont()
{
if(radioButton1.Checked)
{
deger = 20;
}
if (radioButton2.Checked)
{
deger = 40;
}
if (radioButton3.Checked)
{
deger = 60;
}
}
private void button1_Click(object sender, EventArgs e)
{
RadioCont();
float sonuc;
sonuc = Int32.Parse(textBox1.Text) + deger;
label1.Text = sonuc.ToString();
}
}
}