Ejemplo n.º 1
0
        private void timerInsert_Tick(object sender, EventArgs e)
        {
            if (isPause)
            {
                return;
            }
            FuncCallDelegate func = new FuncCallDelegate(_timerInsert_Tick);

            func.BeginInvoke(null, null, null, null);
        }
Ejemplo n.º 2
0
 private void btnNewTrack_Click(object sender, EventArgs e)
 {
     FuncCallDelegate func = new FuncCallDelegate(_btnNewTrack_Click);
     func.BeginInvoke(null, null, null, null);
 }
Ejemplo n.º 3
0
 private void timerInsert_Tick(object sender, EventArgs e)
 {
     if (isPause) return;
     FuncCallDelegate func = new FuncCallDelegate(_timerInsert_Tick);
     func.BeginInvoke(null, null, null, null);
 }
Ejemplo n.º 4
0
        private void btnInsert_Click(object sender, EventArgs e)
        {
            FuncCallDelegate func = new FuncCallDelegate(_btnInsert_Click);

            func.BeginInvoke(null, null, null, null);
        }