Skip to content

Instantly share code, notes, and snippets.

@azidanit
Created March 16, 2021 04:43
Show Gist options
  • Save azidanit/8dd8ea7c22b1b6918883a26d8cefddc7 to your computer and use it in GitHub Desktop.
Save azidanit/8dd8ea7c22b1b6918883a26d8cefddc7 to your computer and use it in GitHub Desktop.
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 HelloWorld
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
setSemuaLabel();
}
public void setSemuaLabel()
{
label_nama.Text = "Achmad Zidan Akbar";
label_hello.Text = "HELLO WORLD";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment