Ejemplo n.º 1
0
        /// <summary>
        /// Seed validation
        /// </summary>
        private void SeedInputValidationCheck(object parameter)
        {
            if (Seed_Input == "Insert your seed")
            {
                return;
            }

            Seed_Input = new BL.AppUserControl().SeedValidation(Seed_Input);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// This method fills the dropdownlist for nodes
        /// </summary>
        private void FillNodeDropDown()
        {
            List <string> nodeList = new BL.AppUserControl().FillNodeDropDown();

            foreach (var node in nodeList)
            {
                Node_chooser.Add(node);
            }
        }