예제 #1
0
 private void ClipboardChanged(Object sender, ClipboardChangedEventArgs e)
 {
     if (e.ContentType == SharpClipboard.ContentTypes.Text && clipboard.ClipboardText[0] == '[')
     {
         // TODO: как то тут проверить фит это или не фит!
         list.SetText(clipboard.ClipboardText);
     }
 }
예제 #2
0
 public void SetText(string text)
 {
     if (next != null && buffer.Length > 0)
     {
         next.SetText(buffer);
     }
     buffer = text;
     Parse();
     FillListBox();
     Compare();
 }