Exemplo n.º 1
0
        /// <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);
        }
Exemplo n.º 2
0
        private void OnPrevSignal()
        {
            IFoundValue value = mModel.PrevValue();

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

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