示例#1
0
        //--------------------------------------------------------------------------------------------

        private void butResend_Click(object sender, System.EventArgs e)
        {
            if (start1 == null)
            {
                return;
            }

            start1.ResendRight("Done 1");
        }
示例#2
0
    //--------------------------------------------------------------------------------------------

    protected void butResend_Click(object sender, EventArgs e)
    {
        start1 = (TraceNode)Session.Contents["start1"];
        if (start1 == null)
        {
            return;
        }

        start1.ResendRight("Done 1");
    }
示例#3
0
        //------------------------------------------------------------------------------
        private void butDone1_Click(object sender, RoutedEventArgs e)
        {
            //start1.ResendRight("Done 1");
             //start1.AppendStack();

             // same creating a duplicate node with same id
             TraceNode newNode = new TraceNode(null,false);
             newNode.Id = start1.Id;
             newNode.ResendRight("Done 1");
             newNode.AppendStack();
        }
示例#4
0
 private void butDone1_Click(object sender, EventArgs e)
 {
     start1.ResendRight("Done 1");
 }