Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- OpenFileDialog openFileDialog1 = new OpenFileDialog();
- if (openFileDialog1.ShowDialog() == DialogResult.OK)
- {
- openFileDialog1.Title = "Open";
- fastColoredTextBox1.Text = File.ReadAllText(openFileDialog1.FileName);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement