Пример #1
0
            public ButtonCommands(string buttonContent, ImportMain importPage)
            {
                this.buttonContent = buttonContent;
                this.importPage    = importPage;

                this.importPage.PropertyChanged += new PropertyChangedEventHandler(test_PropertyChanged);
            }
Пример #2
0
 public static ImportMain getInstance(MainWindow mainWindow)
 {
     if (instance == null)
     {
         instance = new ImportMain(mainWindow);
     }
     return(instance);
 }