Exemplo n.º 1
0
        private void SelectFiles(object sender, MouseButtonEventArgs e)
        {
            if (FilesRadioButton.IsChecked == true)
            {
                binaryEmbedStruct.Files = FileSelectorUtility.GetFiles();
                LoadFilesDetails();
            }


            if (DirectoryRadioButton.IsChecked == true)
            {
                binaryEmbedStruct.Directory = FileSelectorUtility.GetDirectory();
                FilesPath.Text = binaryEmbedStruct.Directory.FullName;
            }
        }
Exemplo n.º 2
0
 //Image Steganography
 private void SelectImage(object sender, MouseButtonEventArgs e)
 {
     binaryEmbedStruct.Image = FileSelectorUtility.GetImage();
     LoadImageDetails();
 }