เริ่มต้น Hello World กับภาษา C# Windows Application
บทความวันที่ 22 พฤศจิกายน 2555
บทความนี้ขอกล่าวถึงเรื่องการเขียนโปรแกรม Hello, World ด้วยภาษา C# Windows Application ซึ่งเป็นภาษาในตระกูล .NET ของบริษัทไมโครซอร์ฟ (Microsoft)
ภาพรวมของการ เริ่มต้น Hello World กับภาษา C# Windows Application
1. ประยุกต์ใช้ Controls Textbox, Label และ Button ในการสร้าง Application
2. เขียนโปรแกรมรวมกับเหตุการณ์กดปุ่ม (Button) แล้วแสดงข้อความจาก Textbox ลงไปสู่ Label
ตัวอย่างโปรแกรม
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 WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
label1.Text = textBox1.Text.ToString();
}
}
}
ผลลัพธ์
คำค้นหา เริ่มต้น Hello World กับภาษา C# Windows Application, รับเขียนเว็บ, รับทำเว็บ, เรียนเขียนโปรแกรม