FileOk Action : Open File Dialog « GUI Windows Form « C# / C Sharp






FileOk Action

 
using System;
using System.IO;
using System.Windows.Forms;

class FileDialogApp {
    private static OpenFileDialog ofd;

    static void Main(string[] args) {
        ofd = new OpenFileDialog();
        string s = Path.GetDirectoryName(Path.GetDirectoryName(Directory.GetCurrentDirectory()));

        ofd.InitialDirectory = s;
        ofd.FileOk += new System.ComponentModel.CancelEventHandler(ofd_OK);
        ofd.ShowDialog();
    }
    public static void ofd_OK(object sender,
        System.ComponentModel.CancelEventArgs e) {
        StreamReader sr = new StreamReader(ofd.FileName);
        string s;
        while ((s = sr.ReadLine()) != null) {
            Console.WriteLine(s);
        }
        sr.Close();
    }
}

 








Related examples in the same category

1.Call ShowDialog() to display an OpenFileDialog
2.Set InitialDirectory
3.Set CheckFileExists to true
4.Set Filter
5.shows browsing for a set of filesshows browsing for a set of files
6.shows browsing for a fileshows browsing for a file
7.Open File Dialog with file typesOpen File Dialog with file types
8.Demonstrates using an OpenFileDialog to prompt for a file name, and to open a fileDemonstrates using an OpenFileDialog to prompt for a file name, and to open a file
9.Show the use of some of the OpenFile dialog boxShow the use of some of the OpenFile dialog box