private void Query_Click(object sender, EventArgs e) { LogTextPanel.Text = ""; StudyTree.Nodes.Clear(); CFindSCU client = new CFindSCU(); client.AETitle = AETitle.Text; client.Query(ServerAE.Text, IP.Text, Int32.Parse(Port.Text), delegate(DicomAttributeCollection ds) { UpdateStudyTreeCallback callback = new UpdateStudyTreeCallback( UpdateStudyTree); BeginInvoke(callback, ds); }); }
private void Query_Click(object sender, EventArgs e) { LogTextPanel.Text = ""; StudyTree.Nodes.Clear(); CFindSCU client = new CFindSCU(); client.AETitle = AETitle.Text; client.Query(ServerAE.Text, IP.Text, Int32.Parse(Port.Text), delegate (DicomAttributeCollection ds) { UpdateStudyTreeCallback callback = new UpdateStudyTreeCallback( UpdateStudyTree); BeginInvoke(callback, ds); }); }