コード例 #1
0
ファイル: MainForm.cs プロジェクト: IMAGE-ET/Dicom-7
        private void bnTags_Click(object sender, EventArgs e)
        {
            var dtg = new DicomTagsForm();

            dtg.SetString(_scanSet.DicomInfo);
            dtg.ShowDialog();
        }
コード例 #2
0
        private void bnTags_Click(object sender, EventArgs e)
        {
            if (imageOpened == true)
            {
                List <string> str = dd.dicomInfo;

                DicomTagsForm dtg = new DicomTagsForm();
                dtg.SetString(ref str);
                dtg.ShowDialog();
                imagePanelControl.Invalidate();
            }
            else
            {
                MessageBox.Show("Vui lòng mở file DICOM trước khi xem Tags!", "Chú Ý !!!",
                                MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }
コード例 #3
0
ファイル: ViewDICOM.cs プロジェクト: itcthienkhiem/LIS
        private void bnTags_Click(object sender, EventArgs e)
        {
            if (imageOpened == true)
            {
                List <string> str = dd.dicomInfo;

                DicomTagsForm dtg = new DicomTagsForm();
                dtg.SetString(ref str);
                dtg.ShowDialog();

                imagePanelControl.Invalidate();
            }
            else
            {
                MessageBox.Show("Load a DICOM file before viewing tags!");
            }
        }
コード例 #4
0
ファイル: MainForm.cs プロジェクト: SuperValou/VirtualScanner
        private void bnTags_Click(object sender, EventArgs e)
        {
            if (imageOpened == true)
            {
                List<string> str = dd.dicomInfo;

                DicomTagsForm dtg = new DicomTagsForm();
                dtg.SetString(ref str);
                dtg.ShowDialog();

                imagePanelControl.Invalidate();
            }
            else
                MessageBox.Show("Load a DICOM file before viewing tags!", "Information",
                    MessageBoxButtons.OK, MessageBoxIcon.Information);
        }