วันเสาร์ที่ 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() เพิ่มข้อมูลเข้าไปในไอเท็ม
        }
    }
}




ไม่มีความคิดเห็น:

แสดงความคิดเห็น