private void NewClicked(Period selectionPeriod)
{
MessageBox.Show("New clicked for task " + selectionPeriod.Start.ToString() + " -> " + selectionPeriod.End.ToString());
}
How can I identify the original line of the click ?
Is it possible to pass it like parameter
private void NewClicked(Period selectionPeriod)
{
MessageBox.Show("New clicked for task " + selectionPeriod.Start.ToString() + " -> " + selectionPeriod.End.ToString());
}
How can I identify the original line of the click ?
Is it possible to pass it like parameter