Opc.Ua.ServerTest.TestCaseTreeCtrl.NoneBTN_Click C# (CSharp) Method

NoneBTN_Click() private method

private NoneBTN_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void NoneBTN_Click(object sender, EventArgs e)
        {
            try
            {
                foreach (TreeNode node in NodesTV.Nodes)
                {
                    SetCheckState(node, false);
                }
            }
            catch (Exception exception)
            {
				GuiUtils.HandleException(this.Text, MethodBase.GetCurrentMethod(), exception);
            }
        }