Beispiel #1
0
        public CardInfoForm(CardAtrList smartcardList, string ReaderName, string CardAtr) : base()
        {
            InitializeComponent();
            reader_name = ReaderName;
            card_atr    = CardAtr;

            Text = "Card " + CardAtr;

            eAtr.Text          = CardAtr;
            eDescription.Lines = smartcardList.Descriptions(CardAtr);
            eAnalysis.Lines    = (new CardAtrParser(CardAtr)).TextDescription();
        }
Beispiel #2
0
 void MainFormLoad(object sender, EventArgs e)
 {
     smartcardList = new CardAtrList();
 }