메뉴 건너뛰기

Programing

C# 게시판

Hello, World

관리자2 2018.12.24 18:49 조회 수 : 154

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 ts1

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }

 

        private void Form1_Load(object sender, EventArgs e)

        {

 

        }

 

        private void button1_Click(object sender, EventArgs e)

        {

            this.label1.Text = "Hello, World";

        }

    }

}

출력버튼 클릭시 Hello,World로 문자를 바꾼다.
위로