How to save the content of Textbox into a textfile

Posted by Owais Wani on Stack Overflow See other posts from Stack Overflow or by Owais Wani
Published on 2012-09-27T09:26:41Z Indexed on 2012/09/27 9:37 UTC
Read the original article Hit count: 216

Filed under:
|
|
|

I have a textbox which has some content. I also have a button (SAVE) which shud open the FileSaveDialog and allow the content to be saved in a .txt file.

XAML:

<TextBox Height="93" IsReadOnly="True" Text="{Binding Path=ReadMessage, Mode=TwoWay}" Name="MessageRead" />

<Button Content="Save" Command="{Binding Path=SaveFileCommand}" Name="I2CSaveBtn" />

ViewModel:

private string _readMessage = string.Empty;
    public string ReadMessage
    {
        get
        {
            return _readMessage;
        }
        set
        {
            _readMessage = value;
            NotifyPropertyChanged("ReadMessage");
        }
    }

public static RelayCommand SaveFileCommand { get; set; }

private void RegisterCommands()
    {            
        SaveFileCommand = new RelayCommand(param => this.ExecuteSaveFileDialog());
    }
private void ExecuteSaveFileDialog()
    {
        //What To Do HERE???
    }

What I basically need is to read the content of textbox, open a file save dialog and store it in a text file to be saved in my system.

© Stack Overflow or respective owner

Related posts about wpf

Related posts about mvvm