質問:クリックすると、キーをメインウィンドウbutton1
に送信します。"a"
どうすればいいですか?(例をお願いします)
using System;
using Gtk;
namespace pressevent
{
class MainClass
{
public static void Main(string[] args)
{
Application.Init();
MainWindow win = new MainWindow();
win.KeyPressEvent += delegate(object o, KeyPressEventArgs a) {
if(a.Event.Key == Gdk.Key.a)
Console.WriteLine("Key pressed");
else
Console.WriteLine("Key not pressed");
};
Button btn1 = win.getButton1();
btn1.Pressed += (sender, e) =>
{
Console.WriteLine("Button1 pressed");
// Here code that send "a" key to MainWindow
};
win.Show(); Application.Run();
}}}
ありがとう。PS:申し訳ありませんが私の悪い英語