Make imbeded cover text for stego program

59 views Asked by At

I have stego program (in C#) and to add cover text it should be click on button to upload cover text to cover text box.. I tried to add option in Menu to create dropdown list that includes covers list so when click any one it will be uploaded to cover text box like image below.. Also can I make that cover text embedded with program???

enter image description here

1

There are 1 answers

1
Mohammed Kadhim On BEST ANSWER

OK, no one answer that but I found simple solution its not very perfect but it solve this problem

in button just add this cod and put any text with any length between quotation

private void Options_Click(object sender, RoutedEventArgs e)
    {
        txtCover.Text = "text ...........";
    }