private void change ()
ボタンを押したときに実行したい関数があります。機能を実行するにはButton schimbare = new Button();
、押します。
やってみるschimbare.Click += change();
けどうまくいかない。良いコマンドは何ですか?
これはコードです:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Drawing;
namespace Programarii
{
class InputBoxOptiuni
{
static TextBox textBox1 = new TextBox();
/// <summary>
/// Displays a dialog with a prompt and textbox where the user can enter information
/// </summary>
/// <param name="title">Dialog title</param>
/// <param name="promptText">Dialog prompt</param>
/// <param name="value">Sets the initial value and returns the result</param>
/// <returns>Dialog result</returns>
public static DialogResult Show(string title, string promptText, string informati, string mesaj, ref int ora, ref int minut30, ref int minut15, ref int douaore, ref int minut10, ref int minut5, ref int pornire2, ref int anuntare2, ref int cuparola, ref string parola, ref string email, ref int expirare, ref int cateminute, ref int vl, ref int culimba, string scurtaturi, string scurtaturi2, string format, ref int tipformat)
{
Button schimbare = new Button();
schimbare.Click += change;
}
private void change(object sender, EventArgs e)
{
}
}
}
私に答えるすべてについて、tnx。
私は試してみます:
private void change(object sender, EventArgs e) and schimbare.Click += change;
しかし、動作しません。私は試してみてschimbare.Click += (s,e)=> { //your code };
、動作します!