Page 44 - E-Modul Pemrograman Dasar Kelas X RPL_Neat
P. 44

private void btnKeluar_Click(object sender, EventArgs
                 e)

                               {

                                       this.Close();

                               }

                        }

                 }

                   c)  Form luas segi empat (frmsegiempat)


                 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 Luasdanvolume

                 {
                        public partial class frmSegiempat : Form

                        {

                               public frmSegiempat()

                               {

                                       InitializeComponent();
                               }

                               private void btnHitung_Click(object sender,
                        EventArgs e)

                               {

                                       double panjang, lebar, luas;

                                       panjang double.Parse(txtPanjang.Text);

                                       lebar double.Parse(txtLebar.Text);
                                       luas = panjang lebar;

                                                             34
   39   40   41   42   43   44   45   46   47   48   49