Exemplo n.º 1
0
        private void AddCommandsToDic()
        {
            CreateNewFolder   createNewFolder   = new CreateNewFolder();
            CreateNewFile     createNewFile     = new CreateNewFile();
            LockPc            lockPc            = new LockPc();
            Shutdown          shutDown          = new Shutdown();
            SearchInPc        searchInPc        = new SearchInPc();
            UnlockPc          unlockPc          = new UnlockPc();
            SleepPc           sleepPc           = new SleepPc();
            SleepLuna         sleepLuna         = new SleepLuna();
            WakeUpLuna        wakeUpLuna        = new WakeUpLuna();
            CreateClass       createClass       = new CreateClass();
            DefineLanguage    defineLanguage    = new DefineLanguage();
            DefineProjectName defineProjectName = new DefineProjectName();
            DefineProjectPath defineProjectPath = new DefineProjectPath();
            GoTo     goTo     = new GoTo();
            WhereAmI whereAmI = new WhereAmI();


            dic.Add(createNewFile.CommandName, createNewFile);
            dic.Add(createNewFolder.CommandName, createNewFolder);
            dic.Add(lockPc.CommandName, lockPc);
            dic.Add(shutDown.CommandName, shutDown);
            dic.Add(searchInPc.CommandName, searchInPc);
            dic.Add(unlockPc.CommandName, unlockPc);
            dic.Add(sleepPc.CommandName, sleepPc);
            dic.Add(sleepLuna.CommandName, sleepLuna);
            dic.Add(wakeUpLuna.CommandName, wakeUpLuna);
            dic.Add(createClass.CommandName, createClass);
            dic.Add(defineLanguage.CommandName, defineLanguage);
            dic.Add(defineProjectName.CommandName, defineProjectName);
            dic.Add(defineProjectPath.CommandName, defineProjectPath);
            dic.Add(goTo.CommandName, goTo);
            dic.Add(whereAmI.CommandName, whereAmI);
        }
Exemplo n.º 2
0
        public Start()
        {
            InitializeComponent();

            SizeToContent = SizeToContent.Manual;
            MaxHeight     = SystemParameters.WorkArea.Height;

            // Button Events
            MinimizeButton.AddHandler(MouseLeftButtonUpEvent, new MouseButtonEventHandler(MinimizeButtonUp), true);
            CloseButton.AddHandler(MouseLeftButtonUpEvent, new MouseButtonEventHandler(CloseButtonUp), true);
            CreateNewFile.AddHandler(MouseLeftButtonUpEvent, new MouseButtonEventHandler(CreateNewFileButtonUp), true);
            OpenPhoto.AddHandler(MouseLeftButtonUpEvent, new MouseButtonEventHandler(OpenPhotoButtonUp), true);
            OpenFile.AddHandler(MouseLeftButtonUpEvent, new MouseButtonEventHandler(OpenFileButtonUp), true);
        }