Exemplo n.º 1
0
        public MainWindow()
        {
            // This line must be executed first:
            InitializeComponent();

            // Own stuff here:
            cs = new CStack();
            LetterField.Text    = "T:\nZ:\nY:\nX:\n▹";
            VarLetterField.Text = "A=\nB=\nC=\nD=\nE=\nF=\nG=\nH=\n▹";
            UpdateNumberField();
        }
Exemplo n.º 2
0
 public MainWindow()
 {
     // This line must be executed first:
     InitializeComponent();
     // int X = 12;
     // MessageBox.Show($"X = {X}");
     // Own stuff here:
     cs = new CStack(@".\variabelFile.txt");
     // cs = new CStack();
     LetterField.Text    = "T:\nZ:\nY:\nX:\n▹";
     VarLetterField.Text = "A=\nB=\nC=\nD=\nE=\nF=\nG=\nH=\n▹";
     UpdateNumberField();
 }