~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to tests/test-projects/resources-tester/ResourcesTester/FormFile.Designer.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
namespace ResourcesTester
 
2
{
 
3
    partial class Form1
 
4
    {
 
5
        /// <summary>
 
6
        /// Required designer variable.
 
7
        /// </summary>
 
8
        private System.ComponentModel.IContainer components = null;
 
9
 
 
10
        /// <summary>
 
11
        /// Clean up any resources being used.
 
12
        /// </summary>
 
13
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 
14
        protected override void Dispose (bool disposing)
 
15
        {
 
16
            if (disposing && (components != null)) {
 
17
                components.Dispose ();
 
18
            }
 
19
            base.Dispose (disposing);
 
20
        }
 
21
 
 
22
        #region Windows Form Designer generated code
 
23
 
 
24
        /// <summary>
 
25
        /// Required method for Designer support - do not modify
 
26
        /// the contents of this method with the code editor.
 
27
        /// </summary>
 
28
        private void InitializeComponent ( )
 
29
        {
 
30
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager (typeof (Form1));
 
31
            this.pictureBox1 = new System.Windows.Forms.PictureBox ();
 
32
            this.label1 = new System.Windows.Forms.Label ();
 
33
            ((System.ComponentModel.ISupportInitialize) (this.pictureBox1)).BeginInit ();
 
34
            this.SuspendLayout ();
 
35
            // 
 
36
            // pictureBox1
 
37
            // 
 
38
            this.pictureBox1.AccessibleDescription = null;
 
39
            this.pictureBox1.AccessibleName = null;
 
40
            resources.ApplyResources (this.pictureBox1, "pictureBox1");
 
41
            this.pictureBox1.BackgroundImage = null;
 
42
            this.pictureBox1.Font = null;
 
43
            this.pictureBox1.ImageLocation = null;
 
44
            this.pictureBox1.Name = "pictureBox1";
 
45
            this.pictureBox1.TabStop = false;
 
46
            // 
 
47
            // label1
 
48
            // 
 
49
            this.label1.AccessibleDescription = null;
 
50
            this.label1.AccessibleName = null;
 
51
            resources.ApplyResources (this.label1, "label1");
 
52
            this.label1.Font = null;
 
53
            this.label1.Name = "label1";
 
54
            // 
 
55
            // Form1
 
56
            // 
 
57
            this.AccessibleDescription = null;
 
58
            this.AccessibleName = null;
 
59
            resources.ApplyResources (this, "$this");
 
60
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 
61
            this.BackgroundImage = null;
 
62
            this.Controls.Add (this.label1);
 
63
            this.Controls.Add (this.pictureBox1);
 
64
            this.Font = null;
 
65
            this.Icon = null;
 
66
            this.Name = "Form1";
 
67
            ((System.ComponentModel.ISupportInitialize) (this.pictureBox1)).EndInit ();
 
68
            this.ResumeLayout (false);
 
69
            this.PerformLayout ();
 
70
 
 
71
        }
 
72
 
 
73
        #endregion
 
74
 
 
75
        private System.Windows.Forms.PictureBox pictureBox1;
 
76
        private System.Windows.Forms.Label label1;
 
77
    }
 
78
}
 
79