Example #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="App" /> class.
        /// </summary>
        public App()
        {
            BaseUserControl = new BaseUserControl();

            if (CheckForInternetConnection())
            {
                BaseUserControl.InitializeComponent(true);

                IsValidToProcess = true;
            }
            else
            {
                IsValidToProcess = false;
            }
        }