예제 #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
 public void OnIndicatorsButtonPressed(IRibbonControl control)
 {
     try
     {
         var ifrm = new indicatorsFrm();
         ifrm.ShowDialog();
     }
     catch (Exception ex)
     {
         helperClass.log.Error(ex);
     }
 }