コード例 #1
0
 private void OnSendTradeRequest(object sender, EventArgs e)
 {
     //In this simple example no data is collected from the view.
     //Instead a hardcoded trade request is created in the controller.
     tradeRequestStatusTextBox.Text = "Request Pending...";
     stockController.SendTradeRequest();
     log.Info("Sent trade request.");
 }