LAPORAN PRAKTIKUM 2
NAMA : GIGIH MUHAJIR
4211401006 MK2A
NAMA : GIGIH MUHAJIR
4211401006 MK2A
1. ketikkan program tesrsebut di notepad
,kemudian jalankan dan lihat hasilnya
using
System;
using
System.Windows.Forms
namespace
Mecha2015
{
public
class IntroCsharp : Form
{
public static void Main() {
Application.Run(new
IntroCsharp());
}
}
}
Setelah compile berhasil dan dijalankan:
2. ketikkan program tesrsebut di notepad ,kemudian jalankan dan lihat
hasilnya
using
System;
using
System.Windows.Forms;
namespace
Mecha2015
{
public
class IntroCsharp : Form
{
private
Button btnSubmit;
private
void InitializeComponent()
{
btnSubmit
= new Button();
Controls.Add(btnSubmit);
}
public
IntroCsharp()
{
InitializeComponent();
}
public
static void Main() {
Application.Run(new
IntroCsharp());
}
}
}
Setelah dirunning,hasilnya :
3. ketikkan program tesrsebut di notepad ,kemudian jalankan dan lihat
hasilnya
using System;
using
System.Drawing;
using
System.Windows.Forms;
namespace
Mecha2015
{
public
class IntroCsharp : Form
{
private
Button btnSubmit;
private
Label label1;
private void
InitializeComponent()
{
btnSubmit
= new Button();
btnSubmit.Location
= new Point(100, 40);
label1 =
new Label();
label1.Text
= "halo";
Controls.Add(btnSubmit);
Controls.Add(label1);
}
public
IntroCsharp()
{
InitializeComponent();
}
public
static void Main() {
Application.Run(new
IntroCsharp());
}
}
}
Membuat form di visual studio
di bawah ini adalah tampilan form
saat kita menambahkan button,labell,dan TextBox :
Setelah saya memasukkan coding :
double a, b, c;
a=Convert.ToDouble(textBox1.Text);
b=Convert.ToDouble(textBox2.Text);
c=a +
b;
label1.Text
= c.ToString();
Tidak ada komentar:
Posting Komentar