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 Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void button4_Click(object sender, EventArgs e)
{
Close();
}
private void Form2_Load(object sender, EventArgs e)
{
button1.Text = "剪刀";
button2.Text = "石頭";
button3.Text = "布";
}
private void button1_Click(object sender, EventArgs e)
{
process(0);
}
private void button2_Click(object sender, EventArgs e)
{
process(1);
}
private void button3_Click(object sender, EventArgs e)
{
process(2);
}
privat ..
訪客只能看到部份內容,免費 加入會員 或由臉書 Google 可以看到全部內容