Exemplo n.º 1
0
        private void treeDump_NodeMouseDoubleClick(object sender, TreeNodeAdvMouseEventArgs e)
        {
            if (e.Node.Tag is DicomNode)
            {
                DicomNode dn = e.Node.Tag as DicomNode;

                if (dn.VR != "SQ" || e.Button == MouseButtons.Right)
                {
                    DicomDictionaryForm ddf = new DicomDictionaryForm(dn.ElementTag.Substring(1, 9));
                    ddf.ShowDialog(this);
                }
            }
        }
Exemplo n.º 2
0
 private void tsbDictionary_Click(object sender, EventArgs e)
 {
     DicomDictionaryForm ddf = new DicomDictionaryForm();
     ddf.ShowDialog(this);
 }
Exemplo n.º 3
0
        private void treeDump_NodeMouseDoubleClick(object sender, TreeNodeAdvMouseEventArgs e)
        {
            if (e.Node.Tag is DicomNode) {
                DicomNode dn = e.Node.Tag as DicomNode;

                if (dn.VR != "SQ" || e.Button == MouseButtons.Right) {
                    DicomDictionaryForm ddf = new DicomDictionaryForm(dn.ElementTag.Substring(1, 9));
                    ddf.ShowDialog(this);
                }
            }
        }
Exemplo n.º 4
0
        private void tsbDictionary_Click(object sender, EventArgs e)
        {
            DicomDictionaryForm ddf = new DicomDictionaryForm();

            ddf.ShowDialog(this);
        }