Tag: Radiobutton
Tutorial #3 – Pizza Order in C#
by Samet Kilictas on Nov.11, 2008, under C#, Programming
Here is my new pizza order tutorial for you. In this tutorial you are able to control checkboxes and radiobuttons together and show them into a message box window.
Codes below…
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication2
{
public partial class pizza : Form
{
//Some global strings to keep radiobutton and checkbox events text's.
private String a1 = null;
private String a2 = null;
private String a3 = null;
private String menu = null;
public pizza()
{
InitializeComponent();
}

Thanks for dropping by! Feel free to join the discussion by leaving comments, and stay updated by subscribing to the 