search
尋找貓咪~QQ 地點 桃園市桃園區 Taoyuan , Taoyuan

C# 文字方塊[textbox] enter執行(觸發) 按鈕[button] 事件程式碼 – jashliao部落格

C# 文字方塊[textbox] enter執行(觸發) 按鈕[button] 事件程式碼

 

資料來源: http://blog.udn.com/pgferic/7452066

 

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 CS_TextBoxEnterCallButton
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

 

        private void button1_Click(object sender, EventArgs e)
{
textBox1.Text = textBox1.Text + “-CS_TextBoxEnterCallButton”;
}

 

        private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
button1.PerformClick();

            }
}

    }
}

 



熱門推薦

本文由 jashliaoeuwordpress 提供 原文連結

寵物協尋 相信 終究能找到回家的路
寫了7763篇文章,獲得2次喜歡
留言回覆
回覆
精彩推薦