c#的这些功能如何实现...
请问我用C#做了一个前台界面,四个按钮一个文本框,我想实现一个按钮输入,一个入栈,一个出栈,一个清空应该怎么写代码啊.
我是一个初学者,里面很多方法都不知道是做什么的,也不知道怎么用,在类里面应该怎么写代码呢?请各位帮帮忙拉~
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace stack
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
}
private void button3_Click(object sender, EventArgs e)
{
}
private void button4_Click(object sender, EventArgs e)
{
}
}
}