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()); }
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; }