Код: Выделить всё
void delivGrid_Keydown(object sender, KeyEventArgs e)
{
if (e.Key == Key.V &&
(Keyboard.Modifiers & ModifierKeys.Control) == ModifierKeys.Control)
{
string clipData = System.Windows.Clipboard.GetText();
string[] clipRows = Regex.Split(clipData, @"\r");
foreach (var row in clipRows)
{
delivGrid.Items.Add(new Deliverable { name = String.Empty, desc = row, rDays = String.Empty });
}
//viewModel.Paste()
}
}
Подробнее здесь: https://stackoverflow.com/questions/627 ... n-datagrid
Мобильная версия