Esempio n. 1
0
        public DecryptTab()
        {
            InitializeComponent();
            algorithmsComboBox.ItemsSource = AlgorithmUtility.getList();

            //NOTE make background transparent - color used only in designer
            this.Background = System.Windows.Media.Brushes.Transparent;
            Console.WriteLine("Selected index {0}", algorithmsComboBox.SelectedIndex.ToString());
        }
Esempio n. 2
0
        public EncryptTab()
        {
            InitializeComponent();
            algorithmsComboBox.ItemsSource = AlgorithmUtility.getList();

            //NOTE make background transparent - color used only in designer
            this.Background = System.Windows.Media.Brushes.Transparent;

            // listeners
            carrierViewer.PropertyChanged += carrierViewer_PropertyChanged;
        }