-
Notifications
You must be signed in to change notification settings - Fork 0
/
Presenter.cs
37 lines (28 loc) · 1.25 KB
/
Presenter.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MeFastTextBox
{
class Presenter
{
}
class KeyPresenter : Presenter
{
public static NeoRTB FatBox { get; set; }
/// <summary>
/// обрабатывает KeyPress
/// </summary>
/// <param name="e">символ</param>
/// <returns>false, если оставляем все как есть</returns>
public static bool Check(char e)
{
if (Char.IsDigit(e)) return false; //если число, возващаем false
if (Char.IsWhiteSpace(e) | Char.IsPunctuation(e)) return false; //если пробел или знак пунктуации, возващаем false
//Проверить: надо проверить оба слова, которые образовались в результате разделения
//если длина слова больше
if (FatBox.SelectionLength > 0) return false;
return true;
}
}
}