コード例 #1
0
ファイル: Class1.cs プロジェクト: zaibatsi/open-api
        public void OnIndicatorsButtonPressed(IRibbonControl control)
        {
            helperClass.log.Info("On Indicators button is pressed");
            var ifrm = new indicatorsFrm();

            ifrm.ShowDialog();
        }
コード例 #2
0
ファイル: Class1.cs プロジェクト: wzy-connect/open-api
 public void OnIndicatorsButtonPressed(IRibbonControl control)
 {
     try
     {
         var ifrm = new indicatorsFrm();
         ifrm.ShowDialog();
     }
     catch (Exception ex)
     {
         helperClass.log.Error(ex);
     }
 }