อนุทินครั้งที่ 10
องความรู้ที่ได้รับ
ได้รู้การทำปฎิทิน แสดงการเลือกวันที่
ความรู้สึกต่อการเรียนในวันนี้
ไม่เข้าใจในบางส่วนของโปรแกรม
วันเสาร์ที่ 10 กันยายน พ.ศ. 2554
ส่งการบ้านครั้งที่ 8
โปรแกรมที่ 12.4
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 display_TextChanged(object sender, EventArgs e)
{
}
private void list1_SelectedIndexChanged(object sender, EventArgs e)
{
int index = list1.SelectedIndex;
display.Text = list1.Items[index].ToString();
}
private void list2_SelectedIndexChanged(object sender, EventArgs e)
{
int index = list2.SelectedIndex;
display.Text = list2.Items[index].ToString();
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
โปรแกรมที่ 12.5
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 listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void add_Click(object sender, EventArgs e)
{
string str = text.Text; //อ่านข้อมูลจากเท็กซ์บอกซ์มาใส่ตัวแปร str
listBox1.Items.Add(str); //ใช้เมธอด Add เพิ่มข้อมูลเข้าไปในไอเท็ม
}
private void text_TextChanged(object sender, EventArgs e)
{
}
private void label1_Click(object sender, EventArgs e)
{
}
}
}
โปรแกรมที่ 12.6
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 delete_Click(object sender, EventArgs e)
{
int index = listBox1.SelectedIndex; //อ่านค่าอินเด็กซ์ของไอเท็มที่เลือก
listBox1.Items.RemoveAt(index); //ลบข้อมูลในตำแหน่งที่เลือก
}
private void clear_Click(object sender, EventArgs e)
{
listBox1.Items.Clear(); //เคลียร์ค่าไอเท็มในลิสต์บ็อกซ์
}
private void button2_Click(object sender, EventArgs e)
{
MessageBox.Show("The number of items in the list is " +
listBox1.Items.Count.ToString());
}
private void button1_Click(object sender, EventArgs e)
{
string str = textBox1.Text; //อ่านข้อมูลจากเท็กซ์บ็อกซ์
listBox1.Items.Add(str); //เมธอด Add() เพิ่มข้อมูลเข้าไปในไอเท็ม
}
}
}
วันศุกร์ที่ 2 กันยายน พ.ศ. 2554
week9
อนุทินครั้งที่ 9
องค์ความรู้ที่ได้รับ
องค์ความรู้ที่ได้รับ คือ ได้รู้การเขียนโปรแกรมปุ่มคลิกแล้วแสดงรูปภาพ
ประโยชน์ที่ได้รับในวันนี้
ได้รู้หลักวิธีการเขียนโปรแกรมแสดงรู้ภาพ และวิธีข้อมูลใรการ
ทำรายงาน
องค์ความรู้ที่ได้รับ
องค์ความรู้ที่ได้รับ คือ ได้รู้การเขียนโปรแกรมปุ่มคลิกแล้วแสดงรูปภาพ
ประโยชน์ที่ได้รับในวันนี้
ได้รู้หลักวิธีการเขียนโปรแกรมแสดงรู้ภาพ และวิธีข้อมูลใรการ
ทำรายงาน
แบบฝึกหัด
โปรแกรมที่ 12.1
โปรแกรมที่ 12.3
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 Form1_Load(object sender, EventArgs e)
{
}
private void get_text_Click(object sender, EventArgs e)
{
MessageBox.Show(messagetext.Text, "OUtput");
}
}
}
โปรแกรมที่ 12.2
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 textBox1_TextChanged(object sender, EventArgs e)
{
}
private void add_Click(object sender, EventArgs e)
{
Int32 A, B, X;
A = Convert.ToInt32(Input_A.Text); //เปลี่ยนข้อมูลเป็นตัวเลข
B = Convert.ToInt32(Input_B.Text); //เปลี่ยนข้อมูลเป็นตัวเลข
X = A + B;
output.Text = X.ToString(); //เปลี่ยนตัวเลขเป็นสตริงแล้วแสดงผล
}
}
}
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 show_Click(object sender, EventArgs e)
{
image.ImageLocation = "D:\\5421414016_กฤตขจร\\pic1.jpg";
image.Load(); //โหลดภาพขึ้นมาแสดงผล
}
private void delete_Click(object sender, EventArgs e)
{
image.Image = null; //กำหนดคุณสมบัติโดยให้ค่า Image เป็น null
}
}
}
สมัครสมาชิก:
บทความ (Atom)