Exemple #1
0
        /// <summary>
        /// Initializes a new instance of the class.
        /// </summary>
        public AlphabetScannerQwerty()
        {
            _alphabetScannerCommon = new AlphabetScannerCommon(this);

            InitializeComponent();

            Load        += AlphabetScanner_Load;
            FormClosing += AlphabetScanner_FormClosing;
        }
        /// <summary>
        /// Initializes a new instance of the class.
        /// </summary>
        public AlphabetScannerAlternateMinimal()
        {
            _alphabetScannerCommon = new AlphabetScannerCommon(this);

            InitializeComponent();

            Load        += AlphabetScanner_Load;
            FormClosing += AlphabetScanner_FormClosing;
        }
        /// <summary>
        /// Initializes a new instance of the class.
        /// </summary>
        public TalkApplicationScannerAbc()
        {
            _alphabetScannerCommon = new AlphabetScannerCommon(this);

            InitializeComponent();

            subscribeToEvents();

            _dimScanner = true;

            _dispatcher = new Dispatcher(this);
        }
        /// <summary>
        /// Intitialize the class
        /// </summary>
        /// <param name="startupArg">startup params</param>
        /// <returns>true on cussess</returns>
        public bool Initialize(StartupArg startupArg)
        {
            _alphabetScannerCommon = new AlphabetScannerCommon(this);

            bool retVal = _alphabetScannerCommon.Initialize(startupArg);

            if (retVal)
            {
                ScannerCommon.CreateStatusBar();
            }

            return(retVal);
        }
        /// <summary>
        /// Intitializes the class
        /// </summary>
        /// <param name="startupArg">startup params</param>
        /// <returns>true on cussess</returns>
        public bool Initialize(StartupArg startupArg)
        {
            _alphabetScannerCommon = new AlphabetScannerCommon(this);

            _alphabetScannerCommon.EvtFormatPreditionWord += _alphabetScannerCommon_EvtFormatPreditionWord;

            bool retVal = _alphabetScannerCommon.Initialize(startupArg);

            if (retVal)
            {
                ScannerCommon.CreateStatusBar();
            }

            return(retVal);
        }
        /// <summary>
        /// Intitialize the class
        /// </summary>
        /// <param name="startupArg">startup params</param>
        /// <returns>true on cussess</returns>
        public bool Initialize(StartupArg startupArg)
        {
            _alphabetScannerCommon = new AlphabetScannerCommon(this);

            _alphabetScannerCommon.EvtFormatPreditionWord += _homeScreenCommon_EvtFormatPreditionWord;

            bool retVal = _alphabetScannerCommon.Initialize(startupArg);
            if (retVal)
            {
                ScannerCommon.CreateStatusBar();
            }

            //FormBorderStyle = FormBorderStyle.Sizable;
            ControlBox = true;
            return retVal;
        }
Exemple #7
0
 /// <summary>
 /// Intitialize the class
 /// </summary>
 /// <param name="startupArg">startup params</param>
 /// <returns>true on cussess</returns>
 public bool Initialize(StartupArg startupArg)
 {
     _alphabetScannerCommon = new AlphabetScannerCommon(this);
     _alphabetScannerCommon.EvtFormatPreditionWord += _homeScreenCommon_EvtFormatPreditionWord;
     return(_alphabetScannerCommon.Initialize(startupArg));
 }
 /// <summary>
 /// Intitializes the class
 /// </summary>
 /// <param name="startupArg">startup param</param>
 /// <returns>true on success</returns>
 public bool Initialize(StartupArg startupArg)
 {
     _alphabetScannerCommon = new AlphabetScannerCommon(this);
     return(_alphabetScannerCommon.Initialize(startupArg));
 }