1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 using System
.Collections
.Generic
;
7 using System
.ComponentModel
;
11 using System
.Windows
.Forms
;
15 public partial class OpenDialog
: Form
19 InitializeComponent();
23 /// Get the user selected filename
25 public string FileName
28 return this.name_box_
.Text
;
32 private void button1_Click(object sender
, EventArgs e
)
37 private void OnKeyUp(object sender
, KeyEventArgs e
)
39 if (e
.KeyCode
== Keys
.Enter
)