summaryrefslogtreecommitdiff
path: root/chromium/tools/stats_viewer/OpenDialog.cs
blob: 91f03320082d46781808fd73efde70433026c283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

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

namespace StatsViewer
{
  public partial class OpenDialog : Form
  {
    public OpenDialog()
    {
      InitializeComponent();
    }

    /// <summary>
    /// Get the user selected filename
    /// </summary>
    public string FileName
    {
      get { 
        return this.name_box_.Text;
      }
    }

    private void button1_Click(object sender, EventArgs e)
    {
      this.Close();
    }

    private void OnKeyUp(object sender, KeyEventArgs e)
    {
      if (e.KeyCode == Keys.Enter)
      {
        this.Close();
      }
    }
  }
}