示例#1
0
        private void btn4_Click(object sender, RoutedEventArgs e)
        {
            VideurExecuter videur = new VideurExecuter();

            videur.invoke();
            System.Windows.MessageBoxResult result = MessageBox.Show("Excecuter has been clean ", "Executer",
                                                                     MessageBoxButton.OK, MessageBoxImage.Information);
        }
示例#2
0
 public VideurExecuter GetInstance()
 {
     if (this.instance == null)
     {
         this.instance = new VideurExecuter();
     }
     return(instance);
 }