Ejemplo n.º 1
0
        //------------------------------------------------------------------------------

        private void butWinWatchClear_Click(object sender, RoutedEventArgs e)
        {
            if (_myWinWatch != null)
            {
                _myWinWatch.ClearAll();
            }
        }
Ejemplo n.º 2
0
        //--------------------------------------------------------------------------------------------

        private void butClearWinWatches_Click(object sender, System.EventArgs e)
        {
            if (MyWinWatch != null)
            {
                MyWinWatch.ClearAll();
            }
        }
Ejemplo n.º 3
0
 private void butWinWatchClear_Click(object sender, EventArgs e)
 {
     if (MyWinWatch != null)
     {
         MyWinWatch.ClearAll();
     }
 }
Ejemplo n.º 4
0
    //--------------------------------------------------------------------------------------------

    protected void butClearWinWatches_Click(object sender, EventArgs e)
    {
        MyWinWatch = (WinWatch)Session.Contents["MyWinWatch"];
        if (MyWinWatch != null)
        {
            MyWinWatch.ClearAll();
        }
    }