~alexharrington/xibo/pyclient-1.1.0a22

« back to all changes in this revision

Viewing changes to client/dotNET/About.Designer.cs

  • Committer: Alex Harrington
  • Date: 2009-12-31 11:38:50 UTC
  • Revision ID: alex@longhill.org.uk-20091231113850-bz5flhqq2gsw0qxf
Converted to 2.0 repo format and fixed lineendings

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
namespace XiboClient
2
 
{
3
 
    partial class About
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
 
            {
18
 
                components.Dispose();
19
 
            }
20
 
            base.Dispose(disposing);
21
 
        }
22
 
 
23
 
        #region Windows Form Designer generated code
24
 
 
25
 
        /// <summary>
26
 
        /// Required method for Designer support - do not modify
27
 
        /// the contents of this method with the code editor.
28
 
        /// </summary>
29
 
        private void InitializeComponent()
30
 
        {
31
 
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(About));
32
 
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
33
 
            this.buttonHelp = new System.Windows.Forms.Button();
34
 
            this.richTextBox1 = new System.Windows.Forms.RichTextBox();
35
 
            this.label1 = new System.Windows.Forms.Label();
36
 
            this.label2 = new System.Windows.Forms.Label();
37
 
            this.buttonClose = new System.Windows.Forms.Button();
38
 
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
39
 
            this.SuspendLayout();
40
 
            // 
41
 
            // pictureBox1
42
 
            // 
43
 
            this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
44
 
            this.pictureBox1.Location = new System.Drawing.Point(43, 6);
45
 
            this.pictureBox1.Name = "pictureBox1";
46
 
            this.pictureBox1.Size = new System.Drawing.Size(160, 52);
47
 
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
48
 
            this.pictureBox1.TabIndex = 0;
49
 
            this.pictureBox1.TabStop = false;
50
 
            // 
51
 
            // buttonHelp
52
 
            // 
53
 
            this.buttonHelp.Location = new System.Drawing.Point(12, 277);
54
 
            this.buttonHelp.Name = "buttonHelp";
55
 
            this.buttonHelp.Size = new System.Drawing.Size(75, 23);
56
 
            this.buttonHelp.TabIndex = 1;
57
 
            this.buttonHelp.Text = "Online Help";
58
 
            this.buttonHelp.UseVisualStyleBackColor = true;
59
 
            this.buttonHelp.Click += new System.EventHandler(this.buttonHelp_Click);
60
 
            // 
61
 
            // richTextBox1
62
 
            // 
63
 
            this.richTextBox1.Location = new System.Drawing.Point(12, 97);
64
 
            this.richTextBox1.Name = "richTextBox1";
65
 
            this.richTextBox1.Size = new System.Drawing.Size(397, 174);
66
 
            this.richTextBox1.TabIndex = 2;
67
 
            this.richTextBox1.Text = resources.GetString("richTextBox1.Text");
68
 
            this.richTextBox1.TextChanged += new System.EventHandler(this.richTextBox1_TextChanged);
69
 
            // 
70
 
            // label1
71
 
            // 
72
 
            this.label1.AutoSize = true;
73
 
            this.label1.Location = new System.Drawing.Point(296, 9);
74
 
            this.label1.Name = "label1";
75
 
            this.label1.Size = new System.Drawing.Size(35, 13);
76
 
            this.label1.TabIndex = 3;
77
 
            this.label1.Text = "label1";
78
 
            // 
79
 
            // label2
80
 
            // 
81
 
            this.label2.AutoSize = true;
82
 
            this.label2.Location = new System.Drawing.Point(296, 45);
83
 
            this.label2.Name = "label2";
84
 
            this.label2.Size = new System.Drawing.Size(35, 13);
85
 
            this.label2.TabIndex = 4;
86
 
            this.label2.Text = "label2";
87
 
            // 
88
 
            // buttonClose
89
 
            // 
90
 
            this.buttonClose.Location = new System.Drawing.Point(333, 276);
91
 
            this.buttonClose.Name = "buttonClose";
92
 
            this.buttonClose.Size = new System.Drawing.Size(75, 23);
93
 
            this.buttonClose.TabIndex = 5;
94
 
            this.buttonClose.Text = "Close";
95
 
            this.buttonClose.UseVisualStyleBackColor = true;
96
 
            this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
97
 
            // 
98
 
            // About
99
 
            // 
100
 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
101
 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
102
 
            this.ClientSize = new System.Drawing.Size(421, 312);
103
 
            this.Controls.Add(this.buttonClose);
104
 
            this.Controls.Add(this.label2);
105
 
            this.Controls.Add(this.label1);
106
 
            this.Controls.Add(this.richTextBox1);
107
 
            this.Controls.Add(this.buttonHelp);
108
 
            this.Controls.Add(this.pictureBox1);
109
 
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
110
 
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
111
 
            this.Name = "About";
112
 
            this.Text = "About";
113
 
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
114
 
            this.ResumeLayout(false);
115
 
            this.PerformLayout();
116
 
 
117
 
        }
118
 
 
119
 
        #endregion
120
 
 
121
 
        private System.Windows.Forms.PictureBox pictureBox1;
122
 
        private System.Windows.Forms.Button buttonHelp;
123
 
        private System.Windows.Forms.RichTextBox richTextBox1;
124
 
        private System.Windows.Forms.Label label1;
125
 
        private System.Windows.Forms.Label label2;
126
 
        private System.Windows.Forms.Button buttonClose;
127
 
 
128
 
    }
 
1
namespace XiboClient
 
2
{
 
3
    partial class About
 
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
            {
 
18
                components.Dispose();
 
19
            }
 
20
            base.Dispose(disposing);
 
21
        }
 
22
 
 
23
        #region Windows Form Designer generated code
 
24
 
 
25
        /// <summary>
 
26
        /// Required method for Designer support - do not modify
 
27
        /// the contents of this method with the code editor.
 
28
        /// </summary>
 
29
        private void InitializeComponent()
 
30
        {
 
31
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(About));
 
32
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
 
33
            this.buttonHelp = new System.Windows.Forms.Button();
 
34
            this.richTextBox1 = new System.Windows.Forms.RichTextBox();
 
35
            this.label1 = new System.Windows.Forms.Label();
 
36
            this.label2 = new System.Windows.Forms.Label();
 
37
            this.buttonClose = new System.Windows.Forms.Button();
 
38
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
 
39
            this.SuspendLayout();
 
40
            // 
 
41
            // pictureBox1
 
42
            // 
 
43
            this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
 
44
            this.pictureBox1.Location = new System.Drawing.Point(43, 6);
 
45
            this.pictureBox1.Name = "pictureBox1";
 
46
            this.pictureBox1.Size = new System.Drawing.Size(160, 52);
 
47
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
 
48
            this.pictureBox1.TabIndex = 0;
 
49
            this.pictureBox1.TabStop = false;
 
50
            // 
 
51
            // buttonHelp
 
52
            // 
 
53
            this.buttonHelp.Location = new System.Drawing.Point(12, 277);
 
54
            this.buttonHelp.Name = "buttonHelp";
 
55
            this.buttonHelp.Size = new System.Drawing.Size(75, 23);
 
56
            this.buttonHelp.TabIndex = 1;
 
57
            this.buttonHelp.Text = "Online Help";
 
58
            this.buttonHelp.UseVisualStyleBackColor = true;
 
59
            this.buttonHelp.Click += new System.EventHandler(this.buttonHelp_Click);
 
60
            // 
 
61
            // richTextBox1
 
62
            // 
 
63
            this.richTextBox1.Location = new System.Drawing.Point(12, 97);
 
64
            this.richTextBox1.Name = "richTextBox1";
 
65
            this.richTextBox1.Size = new System.Drawing.Size(397, 174);
 
66
            this.richTextBox1.TabIndex = 2;
 
67
            this.richTextBox1.Text = resources.GetString("richTextBox1.Text");
 
68
            this.richTextBox1.TextChanged += new System.EventHandler(this.richTextBox1_TextChanged);
 
69
            // 
 
70
            // label1
 
71
            // 
 
72
            this.label1.AutoSize = true;
 
73
            this.label1.Location = new System.Drawing.Point(296, 9);
 
74
            this.label1.Name = "label1";
 
75
            this.label1.Size = new System.Drawing.Size(35, 13);
 
76
            this.label1.TabIndex = 3;
 
77
            this.label1.Text = "label1";
 
78
            // 
 
79
            // label2
 
80
            // 
 
81
            this.label2.AutoSize = true;
 
82
            this.label2.Location = new System.Drawing.Point(296, 45);
 
83
            this.label2.Name = "label2";
 
84
            this.label2.Size = new System.Drawing.Size(35, 13);
 
85
            this.label2.TabIndex = 4;
 
86
            this.label2.Text = "label2";
 
87
            // 
 
88
            // buttonClose
 
89
            // 
 
90
            this.buttonClose.Location = new System.Drawing.Point(333, 276);
 
91
            this.buttonClose.Name = "buttonClose";
 
92
            this.buttonClose.Size = new System.Drawing.Size(75, 23);
 
93
            this.buttonClose.TabIndex = 5;
 
94
            this.buttonClose.Text = "Close";
 
95
            this.buttonClose.UseVisualStyleBackColor = true;
 
96
            this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
 
97
            // 
 
98
            // About
 
99
            // 
 
100
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
 
101
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 
102
            this.ClientSize = new System.Drawing.Size(421, 312);
 
103
            this.Controls.Add(this.buttonClose);
 
104
            this.Controls.Add(this.label2);
 
105
            this.Controls.Add(this.label1);
 
106
            this.Controls.Add(this.richTextBox1);
 
107
            this.Controls.Add(this.buttonHelp);
 
108
            this.Controls.Add(this.pictureBox1);
 
109
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
 
110
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
 
111
            this.Name = "About";
 
112
            this.Text = "About";
 
113
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
 
114
            this.ResumeLayout(false);
 
115
            this.PerformLayout();
 
116
 
 
117
        }
 
118
 
 
119
        #endregion
 
120
 
 
121
        private System.Windows.Forms.PictureBox pictureBox1;
 
122
        private System.Windows.Forms.Button buttonHelp;
 
123
        private System.Windows.Forms.RichTextBox richTextBox1;
 
124
        private System.Windows.Forms.Label label1;
 
125
        private System.Windows.Forms.Label label2;
 
126
        private System.Windows.Forms.Button buttonClose;
 
127
 
 
128
    }
129
129
}
 
 
b'\\ No newline at end of file'