我想學習C#GUI編程和我有一個關於默認代碼以下問題在C#文本框:文本框的GUI編程
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 WindowsFormsApplication34
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
// Textbox programming goes here
}
}
}
現在,當我想嘗試的東西有點不同與TexBox編程類似這種代碼
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 WindowsFormsApplication20
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
//
// Detect the KeyEventArg's key enumerated constant.
//
if (e.KeyCode == Keys.Enter)
{
MessageBox.Show("You pressed enter! Good job!");
}
else if (e.KeyCode == Keys.Escape)
{
MessageBox.Show("You pressed escape! What's wrong?");
}
}
}
}
我不能運行的代碼,因爲文本框的狀態是
textBox1_KeyDown
,而不是默認的是
textBox1_TextChanged
現在的問題是,我怎麼去從默認彼此改變文本框的事件處理程序?
你在說什麼?你會得到什麼錯誤? – SLaks
呃,什麼? (還有6個去...) – nothrow
我無法運行代碼,並且由於文本框的狀態是?這是什麼意思?你真正想做什麼? – coder