コード例 #1
0
ファイル: Form1.cs プロジェクト: otilrac/decoder
        private void buttonDecodeStk_Click(object sender, EventArgs e)
        {
            TableOutputController.Clear();

            byte[] bytes = Utils.ConvertInputToByteArray(textBoxInput.Text);

            if (bytes == null)
            {
                TableOutputController.Format("Please input valid hex string");
            }
            else
            {
                textBoxInput.Text = BitConverter.ToString(bytes).Replace("-", " ");
                CatDecoder.Decode(bytes);
            }
            dataGridView1.ClearSelection();
        }
コード例 #2
0
ファイル: Form1.cs プロジェクト: otilrac/decoder
 private void buttonClear_Click(object sender, EventArgs e)
 {
     textBoxInput.Clear();
     TableOutputController.Clear();
 }