private void Form1_Load(object sender, EventArgs e)
//instatiate Bunifu Radio Button using Bunifu.UI.WinForms;
BunifuRadioButton bunifuRadio = new BunifuRadioButton();
//set the location for the radio button
bunifuRadio.Location = new Point(290, 150);
//instatiate a Bunifu Label to bind to the radio button
BunifuLabel bunifuLabel = new BunifuLabel();
//set the text for the label
bunifuLabel.Text = "Option one";
//bind the label to Bunifu Radio
bunifuRadio.BindingControl = bunifuLabel;
bunifuRadio.AllowBindingControlLocation = true;
//add the two controls to the form
this.Controls.AddRange(new Control[] { bunifuRadio, bunifuLabel }) ;