質問編集履歴

1

質問を詳細に記載しました。

2021/01/15 06:07

投稿

koukousei_1
koukousei_1

スコア3

test CHANGED
@@ -1 +1 @@
1
- 一文の意味を教えてださい
1
+ デザイン画面編集ができななりました。
test CHANGED
@@ -5,3 +5,229 @@
5
5
  this.pictureBox1.Image = global::daikei.Properties.Resources._12;
6
6
 
7
7
  この一文の「global::daikei.Properties」の部分にエラーが出てしまいました。
8
+
9
+
10
+
11
+
12
+
13
+ ```Designer
14
+
15
+ namespace daikei
16
+
17
+ {
18
+
19
+ partial class daikei_1
20
+
21
+ {
22
+
23
+ /// <summary>
24
+
25
+ /// Required designer variable.
26
+
27
+ /// </summary>
28
+
29
+ private System.ComponentModel.IContainer components = null;
30
+
31
+
32
+
33
+ /// <summary>
34
+
35
+ /// Clean up any resources being used.
36
+
37
+ /// </summary>
38
+
39
+ /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
40
+
41
+ protected override void Dispose(bool disposing)
42
+
43
+ {
44
+
45
+ if (disposing && (components != null))
46
+
47
+ {
48
+
49
+ components.Dispose();
50
+
51
+ }
52
+
53
+ base.Dispose(disposing);
54
+
55
+ }
56
+
57
+
58
+
59
+ #region Windows Form Designer generated code
60
+
61
+
62
+
63
+ /// <summary>
64
+
65
+ /// Required method for Designer support - do not modify
66
+
67
+ /// the contents of this method with the code editor.
68
+
69
+ /// </summary>
70
+
71
+ private void InitializeComponent()
72
+
73
+ {
74
+
75
+ this.button1 = new System.Windows.Forms.Button();
76
+
77
+ this.label1 = new System.Windows.Forms.Label();
78
+
79
+ this.pictureBox1 = new System.Windows.Forms.PictureBox();
80
+
81
+ this.button2 = new System.Windows.Forms.Button();
82
+
83
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
84
+
85
+ this.SuspendLayout();
86
+
87
+ //
88
+
89
+ // button1
90
+
91
+ //
92
+
93
+ this.button1.Font = new System.Drawing.Font("游ゴシック", 20F);
94
+
95
+ this.button1.Location = new System.Drawing.Point(1043, 557);
96
+
97
+ this.button1.Name = "button1";
98
+
99
+ this.button1.Size = new System.Drawing.Size(113, 59);
100
+
101
+ this.button1.TabIndex = 38;
102
+
103
+ this.button1.Text = "次へ";
104
+
105
+ this.button1.UseVisualStyleBackColor = true;
106
+
107
+ this.button1.Click += new System.EventHandler(this.button1_Click);
108
+
109
+ //
110
+
111
+ // label1
112
+
113
+ //
114
+
115
+ this.label1.AutoSize = true;
116
+
117
+ this.label1.Font = new System.Drawing.Font("游ゴシック", 13F);
118
+
119
+ this.label1.Location = new System.Drawing.Point(12, 9);
120
+
121
+ this.label1.Name = "label1";
122
+
123
+ this.label1.Size = new System.Drawing.Size(190, 23);
124
+
125
+ this.label1.TabIndex = 36;
126
+
127
+ this.label1.Text = "台形の面積を求める。";
128
+
129
+ //
130
+
131
+ // pictureBox1
132
+
133
+ //
134
+
135
+ this.pictureBox1.Image = global::daikei.Properties.Resources._12;
136
+
137
+ this.pictureBox1.Location = new System.Drawing.Point(142, 108);
138
+
139
+ this.pictureBox1.Name = "pictureBox1";
140
+
141
+ this.pictureBox1.Size = new System.Drawing.Size(875, 393);
142
+
143
+ this.pictureBox1.TabIndex = 37;
144
+
145
+ this.pictureBox1.TabStop = false;
146
+
147
+ //
148
+
149
+ // button2
150
+
151
+ //
152
+
153
+ this.button2.Font = new System.Drawing.Font("游ゴシック", 20F);
154
+
155
+ this.button2.Location = new System.Drawing.Point(12, 556);
156
+
157
+ this.button2.Name = "button2";
158
+
159
+ this.button2.Size = new System.Drawing.Size(113, 59);
160
+
161
+ this.button2.TabIndex = 39;
162
+
163
+ this.button2.Text = "戻る";
164
+
165
+ this.button2.UseVisualStyleBackColor = true;
166
+
167
+ //
168
+
169
+ // daikei_1
170
+
171
+ //
172
+
173
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
174
+
175
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
176
+
177
+ this.BackColor = System.Drawing.Color.White;
178
+
179
+ this.ClientSize = new System.Drawing.Size(1168, 627);
180
+
181
+ this.ControlBox = false;
182
+
183
+ this.Controls.Add(this.button2);
184
+
185
+ this.Controls.Add(this.button1);
186
+
187
+ this.Controls.Add(this.pictureBox1);
188
+
189
+ this.Controls.Add(this.label1);
190
+
191
+ this.Name = "daikei_1";
192
+
193
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
194
+
195
+ this.Text = "daikei_1";
196
+
197
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
198
+
199
+ this.ResumeLayout(false);
200
+
201
+ this.PerformLayout();
202
+
203
+
204
+
205
+ }
206
+
207
+
208
+
209
+ #endregion
210
+
211
+
212
+
213
+ private System.Windows.Forms.Button button1;
214
+
215
+ private System.Windows.Forms.PictureBox pictureBox1;
216
+
217
+ private System.Windows.Forms.Label label1;
218
+
219
+ private System.Windows.Forms.Button button2;
220
+
221
+ }
222
+
223
+ }
224
+
225
+
226
+
227
+ ```
228
+
229
+
230
+
231
+ エラー文
232
+
233
+ エラー CS0234 型または名前空間の名前 'Properties' が名前空間 'daikei' に存在しません (アセンブリ参照があることを確認してください)。