WPF (Windows Presentation Fundation)

Главная | Исходники | Книги | Ссылки |

Как получить коллекцию строк из TextBox

Используем StringCollection из простраства имен System.Collection.Specialized, который поддерживает интерфейсы IList, ICollection, IEnumerable

  1. StringCollection GetLinesCollectionFromTextBox(TextBox textBox)
  2. {
  3.   StringCollection lines = new StringCollection();
  4.  
  5.   // lineCount may be -1 if TextBox layout info is not up-to-date.
  6.   int lineCount = textBox.LineCount;
  7.  
  8.   for (int line = 0; line < lineCount; line++)
  9.     // GetLineText takes a zero-based line index.
  10.     lines.Add(textBox.GetLineText(line));
  11.  
  12.   return lines;
  13. }
* This source code was highlighted with Source Code Highlighter.


Главная | Программирование | Покер | Фотография | Разное
© Андрей Семёнов, 2009
Hosted by uCoz