Beispiel #1
0
        private void DecodeForm_Load(object sender, EventArgs e)
        {
            //传递进来各个的实例
            TransferSyntaxes tsfactory = new TransferSyntaxes();

            comboBox1.Items.Clear();
            foreach (TransferSyntax syntax in tsfactory.TSs)
            {
                comboBox1.Items.Add(syntax);
            }
        }
Beispiel #2
0
 public DCMFile(String filename) : base(new ImplicitVRLittleEndian())
 {
     this.filename = filename;
     tsFactory     = new TransferSyntaxes();
 }