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.
4 
5 namespace StatsViewer
6 {
7   partial class OpenDialog
8   {
9     /// <summary>
10     /// Required designer variable.
11     /// </summary>
12     private System.ComponentModel.IContainer components = null;
13 
14     /// <summary>
15     /// Clean up any resources being used.
16     /// </summary>
17     /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
Dispose(bool disposing)18     protected override void Dispose(bool disposing)
19     {
20       if (disposing && (components != null))
21       {
22         components.Dispose();
23       }
24       base.Dispose(disposing);
25     }
26 
27     #region Windows Form Designer generated code
28 
29     /// <summary>
30     /// Required method for Designer support - do not modify
31     /// the contents of this method with the code editor.
32     /// </summary>
InitializeComponent()33     private void InitializeComponent()
34     {
35       this.name_box_ = new System.Windows.Forms.TextBox();
36       this.label1 = new System.Windows.Forms.Label();
37       this.button1 = new System.Windows.Forms.Button();
38       this.SuspendLayout();
39       //
40       // name_box_
41       //
42       this.name_box_.Location = new System.Drawing.Point(108, 25);
43       this.name_box_.Name = "name_box_";
44       this.name_box_.Size = new System.Drawing.Size(180, 20);
45       this.name_box_.TabIndex = 0;
46       this.name_box_.KeyUp += new System.Windows.Forms.KeyEventHandler(this.OnKeyUp);
47       //
48       // label1
49       //
50       this.label1.AutoSize = true;
51       this.label1.Location = new System.Drawing.Point(12, 28);
52       this.label1.Name = "label1";
53       this.label1.Size = new System.Drawing.Size(91, 13);
54       this.label1.TabIndex = 1;
55       this.label1.Text = "Stats File to Open";
56       //
57       // button1
58       //
59       this.button1.Location = new System.Drawing.Point(108, 61);
60       this.button1.Name = "button1";
61       this.button1.Size = new System.Drawing.Size(75, 23);
62       this.button1.TabIndex = 2;
63       this.button1.Text = "OK";
64       this.button1.UseVisualStyleBackColor = true;
65       this.button1.Click += new System.EventHandler(this.button1_Click);
66       //
67       // OpenDialog
68       //
69       this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
70       this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
71       this.ClientSize = new System.Drawing.Size(303, 94);
72       this.Controls.Add(this.button1);
73       this.Controls.Add(this.label1);
74       this.Controls.Add(this.name_box_);
75       this.Name = "OpenDialog";
76       this.Text = "OpenDialog";
77       this.ResumeLayout(false);
78       this.PerformLayout();
79 
80     }
81 
82     #endregion
83 
84     private System.Windows.Forms.TextBox name_box_;
85     private System.Windows.Forms.Label label1;
86     private System.Windows.Forms.Button button1;
87   }
88 }
89