//-------------------------------------------------------------------------------------------- private void butAppend_Click(object sender, System.EventArgs e) { if (start2 == null) { return; } start2.AppendLeft("..Done"); // Append left part }
//-------------------------------------------------------------------------------------------- protected void butAppend_Click(object sender, EventArgs e) { start2 = (TraceNode)Session.Contents["start2"]; if (start2 == null) { return; } start2.AppendLeft("..Done"); // Append left part }
//------------------------------------------------------------------------------ private void butEnd2_Click(object sender, RoutedEventArgs e) { _start2.AppendLeft("Done 2"); }