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

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

            start2.Show();
        }
示例#2
0
    //--------------------------------------------------------------------------------------------

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

        start2.Show();
    }
示例#3
0
        //------------------------------------------------------------------------------

        private void butShowNode_Click(object sender, RoutedEventArgs e)
        {
            _start2.Show();
        }