コード例 #1
0
ファイル: SelectFormula.cs プロジェクト: Bulletz4mysa/NBTrade
        static private void SelectFormula_Click(object sender, EventArgs e)
        {
            TextBox tb = (TextBox)((Button)sender).Tag;

            tb.Text = ChartWinControl.DoSelectFormula(tb.Text, null, true);
            tb.Focus();
        }
コード例 #2
0
        private void btnMore_Click(object sender, System.EventArgs e)
        {
            string s = ChartWinControl.DoSelectFormula(null, null, false);

            if (s != null)
            {
                AddFormulas(s);
            }
        }