/// <summary>
        /// Inserts a value into a square.
        /// </summary>
        /// <param name="pFoundValue">The found value to insert</param>
        /// <returns></returns>
        private void InsertValue(IFoundValue pFoundValue)
        {
            mFoundValues.Add(pFoundValue);

            Square square = mSquares[pFoundValue.Index];

            square.InsertValue(pFoundValue.Value);
        }
Exemple #2
0
        private void OnPrevSignal()
        {
            IFoundValue value = mModel.PrevValue();

            mMainView.GridView[value.Index].Value = '\0';
        }
Exemple #3
0
        private void OnNextSignal()
        {
            IFoundValue value = mModel.NextValue();

            mMainView.GridView[value.Index].Value = value.Value;
        }