Ejemplo n.º 1
0
        public MainPage()
        {
            InitializeComponent();

            progressDialogForm = new ProgressDialogForm("Searching ...");

            commandPromptOutputTextBox.ReadOnly = true;

            if (Properties.Settings.Default.DefaultSearchFolder == "")
            {
                packagesPathTextBox.Text = userProfile;
            }
            else
            {
                packagesPathTextBox.Text = Properties.Settings.Default.DefaultSearchFolder;
            }
        }
Ejemplo n.º 2
0
        public MainPage()
        {
            InitializeComponent();
            progressDialogForm = new ProgressDialogForm("Searching ...");
            commandPromptOutputTextBox.ReadOnly = true;

            cmdBuildTimer.Elapsed  += CmdBuildTimer_Elapsed;
            cmdBuildTimer.AutoReset = false;
            cmdPushTimer.Elapsed   += CmdPushTimer_Elapsed;
            cmdPushTimer.AutoReset  = false;

            if (Properties.Settings.Default.DefaultSearchFolder == "")
            {
                packagesPathTextBox.Text = userProfile;
            }
            else
            {
                packagesPathTextBox.Text = Properties.Settings.Default.DefaultSearchFolder;
            }
        }