Windows Forms: How to save files using SaveFileDialog component in C#

How to save files using SaveFileDialog Component with RichTextbox in C#

Step 1Click New Project, then select Visual C# on the left, then Windows and then select Windows Forms Application. Name your project "SaveFile" and then click OK

c# savefiledialogStep 2Design your form as below

savefiledialog in c#

Add a SaveFileDialog, OpenFileDialog component to your form, then add "Rich Text Format|*.rtf" to Filter property of SaveFileDialog, OpenFileDialog

Step 3: Add code to handle your form

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace SaveFile
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void btnOpen_Click(object sender, EventArgs e)
        {
            if (openFileDialog.ShowDialog() == DialogResult.OK)
                richTextBox.LoadFile(openFileDialog.FileName);
        }

        private void btnSave_Click(object sender, EventArgs e)
        {
            if (saveFileDialog.ShowDialog() == DialogResult.OK)
                richTextBox.SaveFile(saveFileDialog.FileName);
        }
    }
}

VIDEO TUTORIALS