我在设计页面上有一个名为BtnCall的按钮;
我正在尝试添加这样的事件
public MainWindow () : base (Gtk.WindowType.Toplevel)
{
Build ();
BtnCall.Click = new System.EventHandler(this.OnBtnCallClicked);
}
但是我收到了错误
/home/bonnie/workstation/voip/voip/MainWindow.cs(11,11): Error CS0131: The left-hand side of an assignment must be a variable, a property or an indexer (CS0131) (voip)