С Новым годом! Форум программистов, компьютерный форум, киберфорум
C# Windows Forms
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.76/25: Рейтинг темы: голосов - 25, средняя оценка - 4.76
556 / 510 / 25
Регистрация: 23.07.2009
Сообщений: 2,359
Записей в блоге: 1
1

Microsoft Visual Studio: Code generation for property 'BackgroundImage' failed. Error was: 'Object reference not set to an instance of an object.'

28.08.2009, 11:49. Показов 4411. Ответов 6
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
вот такая штука вылетает при открытии формы в дизайнере. что это вообще означает и как я мог такого наделать?
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
28.08.2009, 11:49
Ответы с готовыми решениями:

Ошибка на ровном месте: Object reference not set to an instance of an object
Программа на VS2010 C# winforms Программа работала, сделал релиз, начал тестить на других компах,...

NullreferenceExeption was unhandled Object reference not set to an instance of an object
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data;...

Object reference not set to an instance of an object
Имеется 2 класса: public class infa { public int ch_rech,...

Object reference not set to an instance of an object
Люди подскажите как создать на форме несколько панелей с помощью массива. Если делаю так: private...

6
burning1ife
1465 / 1286 / 294
Регистрация: 21.09.2008
Сообщений: 3,438
Записей в блоге: 9
28.08.2009, 14:11 2
в SolutionExplorer окрой Form1.Designer.cs (вместо Form1 будет твое название формы),
в нем найди "Windows Form Designer generated code", далее ищешь строку
this.BackgroundImage=...
так вот удаляй ее и заново переопределяй свойство BackgroundImage
0
556 / 510 / 25
Регистрация: 23.07.2009
Сообщений: 2,359
Записей в блоге: 1
28.08.2009, 16:08  [ТС] 3
дело в том, что буквосочетание BackgroundImage не встречается в проекте ни в одном файле (искал во всех типах). может в этом пакете OpenNETCF ?

Добавлено через 10 минут

я недоговорил как создавалась форма. это наверняка важно.

сперва как обычно, затем в дизайнере добавлено несолько кнопок и лэйблов, затем установлено Localizable = true и изменены тексты для еще несокльких языков. затем:

в файле Form1.designer.cs:

using OpenNETCF.Windows.Forms;

button1 = new System.Windows.Forms.Button ();
и т.д. заменено на:
button1 = new Button2 ();// так он в этом пакете называется

затем открываем снова в дизайнере и видим значительно больше свойств, которые меняем и пр. в качестве BackgroundImage стоит none.

когда хотим это все спрятать, пачками вылетает сообщение, которое стоит в заголовке. причем побороть этот понос проще, закрыв студию и открыв ее снова. вижу, что дизайнер повставлял везде снова вместо

button1 = new Button2 (); -> button1 = new OpenNETCF.Windows.Forms.Button2 ();

видимо, от услуг дизайнера на этом этапе нужно отказаться и редактировать все дальше ручками. или еще редактор ресурсов попробовать, может он поприличнее работает?
0
burning1ife
1465 / 1286 / 294
Регистрация: 21.09.2008
Сообщений: 3,438
Записей в блоге: 9
28.08.2009, 17:33 4
Хотелось бы увидеть код Form1.Designer.cs
0
556 / 510 / 25
Регистрация: 23.07.2009
Сообщений: 2,359
Записей в блоге: 1
28.08.2009, 18:56  [ТС] 5
Цитата Сообщение от kenny69 Посмотреть сообщение
Хотелось бы увидеть код Form1.Designer.cs
:

C#
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
using OpenNETCF.Windows.Forms;
 
namespace ABCD.Forms {
    partial class FormSet {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;
 
        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing) {
            if (disposing && (components != null)) {
                components.Dispose();
            }
            base.Dispose(disposing);
        }
 
        #region Windows Form Designer generated code
 
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent() {
            Button2 button12;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormSet));
            this.labelNum0 = new System.Windows.Forms.Label();
            this.labelHeadline1 = new System.Windows.Forms.Label();
            this.button03 = new Button2();
            this.button00 = new Button2();
            this.button01 = new Button2();
            this.labelNum1 = new System.Windows.Forms.Label();
            this.labelNum2 = new System.Windows.Forms.Label();
            this.button10 = new Button2();
            this.button11 = new Button2();
            this.button22 = new Button2();
            this.button20 = new Button2();
            this.button21 = new Button2();
            this.labelNum3 = new System.Windows.Forms.Label();
            this.button32 = new Button2();
            this.button30 = new Button2();
            this.button31 = new Button2();
            this.labelNum4 = new System.Windows.Forms.Label();
            this.labelNum5 = new System.Windows.Forms.Label();
            this.button42 = new Button2();
            this.button40 = new Button2();
            this.button41 = new Button2();
            this.button52 = new Button2();
            this.button50 = new Button2();
            this.button51 = new Button2();
            this.labelNum6 = new System.Windows.Forms.Label();
            this.button62 = new Button2();
            this.button60 = new Button2();
            this.button61 = new Button2();
            this.labelNum7 = new System.Windows.Forms.Label();
            this.labelNum8 = new System.Windows.Forms.Label();
            this.button72 = new Button2();
            this.button70 = new Button2();
            this.button71 = new Button2();
            this.labelHeadline2 = new System.Windows.Forms.Label();
            this.labelHeadline3 = new System.Windows.Forms.Label();
            this.labelHeadline4 = new System.Windows.Forms.Label();
            this.labelQuoteText = new System.Windows.Forms.Label();
            this.labelQuoteValue = new System.Windows.Forms.Label();
            this.button80 = new Button2();
            this.button81 = new Button2();
            this.button82 = new Button2();
            this.buttonBack = new Button2();
            this.buttonOk = new Button2();
            this.buttonPrevious = new Button2();
            this.buttonNext = new Button2();
            button12 = new Button2();
            this.SuspendLayout();
            // 
            // button12
            // 
            button12.BackColor = System.Drawing.Color.White;
            button12.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(button12, "button12");
            button12.ForeColor = System.Drawing.SystemColors.ControlText;
            button12.Name = "button12";
            button12.ShowFocusBorder = false;
            // 
            // labelNum0
            // 
            resources.ApplyResources(this.labelNum0, "labelNum0");
            this.labelNum0.Name = "labelNum0";
            // 
            // labelHeadline1
            // 
            resources.ApplyResources(this.labelHeadline1, "labelHeadline1");
            this.labelHeadline1.Name = "labelHeadline1";
            // 
            // button03
            // 
            this.button03.BackColor = System.Drawing.Color.White;
            this.button03.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button03, "button03");
            this.button03.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button03.Name = "button03";
            this.button82.ShowFocusBorder = false;
            // 
            // button00
            // 
            this.button00.BackColor = System.Drawing.Color.White;
            this.button00.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button00, "button00");
            this.button00.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button00.Name = "button00";
            this.button82.ShowFocusBorder = false;
            // 
            // button01
            // 
            this.button01.BackColor = System.Drawing.Color.White;
            this.button01.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button01, "button01");
            this.button01.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button01.Name = "button01";
            this.button82.ShowFocusBorder = false;
            // 
            // labelNum1
            // 
            resources.ApplyResources(this.labelNum1, "labelNum1");
            this.labelNum1.Name = "labelNum1";
            // 
            // labelNum2
            // 
            resources.ApplyResources(this.labelNum2, "labelNum2");
            this.labelNum2.Name = "labelNum2";
            // 
            // button10
            // 
            this.button10.BackColor = System.Drawing.Color.White;
            this.button10.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button10, "button10");
            this.button10.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button10.Name = "button10";
            this.button10.ShowFocusBorder = false;
            // 
            // button11
            // 
            this.button11.BackColor = System.Drawing.Color.White;
            this.button11.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button11, "button11");
            this.button11.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button11.Name = "button11";
            this.button82.ShowFocusBorder = false;
            // 
            // button22
            // 
            this.button22.BackColor = System.Drawing.Color.White;
            this.button22.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button22, "button22");
            this.button22.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button22.Name = "button22";
            this.button22.ShowFocusBorder = false;
            // 
            // button20
            // 
            this.button20.BackColor = System.Drawing.Color.White;
            this.button20.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button20, "button20");
            this.button20.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button20.Name = "button20";
            this.button20.ShowFocusBorder = false;
            // 
            // button21
            // 
            this.button21.BackColor = System.Drawing.Color.White;
            this.button21.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button21, "button21");
            this.button21.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button21.Name = "button21";
            this.button82.ShowFocusBorder = false;
            // 
            // labelNum3
            // 
            resources.ApplyResources(this.labelNum3, "labelNum3");
            this.labelNum3.Name = "labelNum3";
            // 
            // button32
            // 
            this.button32.BackColor = System.Drawing.Color.White;
            this.button32.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button32, "button32");
            this.button32.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button32.Name = "button32";
            this.button32.ShowFocusBorder = false;
            // 
            // button30
            // 
            this.button30.BackColor = System.Drawing.Color.White;
            this.button30.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button30, "button30");
            this.button30.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button30.Name = "button30";
            this.button30.ShowFocusBorder = false;
            this.button30.Click += new System.EventHandler(this.button31_Click);
            // 
            // button31
            // 
            this.button31.BackColor = System.Drawing.Color.White;
            this.button31.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button31, "button31");
            this.button31.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button31.Name = "button31";
            this.button82.ShowFocusBorder = false;
            // 
            // labelNum4
            // 
            resources.ApplyResources(this.labelNum4, "labelNum4");
            this.labelNum4.Name = "labelNum4";
            // 
            // labelNum5
            // 
            resources.ApplyResources(this.labelNum5, "labelNum5");
            this.labelNum5.Name = "labelNum5";
            this.labelNum5.ParentChanged += new System.EventHandler(this.label8_ParentChanged);
            // 
            // button42
            // 
            this.button42.BackColor = System.Drawing.Color.White;
            this.button42.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button42, "button42");
            this.button42.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button42.Name = "button42";
            this.button42.ShowFocusBorder = false;
            // 
            // button40
            // 
            this.button40.BackColor = System.Drawing.Color.White;
            this.button40.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button40, "button40");
            this.button40.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button40.Name = "button40";
            this.button40.ShowFocusBorder = false;
            // 
            // button41
            // 
            this.button41.BackColor = System.Drawing.Color.White;
            this.button41.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button41, "button41");
            this.button41.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button41.Name = "button41";
            this.button82.ShowFocusBorder = false;
            // 
            // button52
            // 
            this.button52.BackColor = System.Drawing.Color.White;
            this.button52.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button52, "button52");
            this.button52.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button52.Name = "button52";
            this.button52.ShowFocusBorder = false;
            // 
            // button50
            // 
            this.button50.BackColor = System.Drawing.Color.White;
            this.button50.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button50, "button50");
            this.button50.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button50.Name = "button50";
            this.button50.ShowFocusBorder = false;
            this.button50.Click += new System.EventHandler(this.button51_Click);
            // 
            // button51
            // 
            this.button51.BackColor = System.Drawing.Color.White;
            this.button51.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button51, "button51");
            this.button51.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button51.Name = "button51";
            this.button82.ShowFocusBorder = false;
            // 
            // labelNum6
            // 
            resources.ApplyResources(this.labelNum6, "labelNum6");
            this.labelNum6.Name = "labelNum6";
            // 
            // button62
            // 
            this.button62.BackColor = System.Drawing.Color.White;
            this.button62.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button62, "button62");
            this.button62.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button62.Name = "button62";
            this.button62.ShowFocusBorder = false;
            // 
            // button60
            // 
            this.button60.BackColor = System.Drawing.Color.White;
            this.button60.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button60, "button60");
            this.button60.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button60.Name = "button60";
            this.button60.ShowFocusBorder = false;
            // 
            // button61
            // 
            this.button61.BackColor = System.Drawing.Color.White;
            this.button61.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button61, "button61");
            this.button61.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button61.Name = "button61";
            this.button82.ShowFocusBorder = false;
            // 
            // labelNum7
            // 
            resources.ApplyResources(this.labelNum7, "labelNum7");
            this.labelNum7.Name = "labelNum7";
            // 
            // labelNum8
            // 
            resources.ApplyResources(this.labelNum8, "labelNum8");
            this.labelNum8.Name = "labelNum8";
            // 
            // button72
            // 
            this.button72.BackColor = System.Drawing.Color.White;
            this.button72.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button72, "button72");
            this.button72.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button72.Name = "button72";
            this.button72.ShowFocusBorder = false;
            this.button72.Click += new System.EventHandler(this.button73_Click);
            // 
            // button70
            // 
            this.button70.BackColor = System.Drawing.Color.White;
            this.button70.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button70, "button70");
            this.button70.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button70.Name = "button70";
            this.button70.ShowFocusBorder = false;
            // 
            // button71
            // 
            this.button71.BackColor = System.Drawing.Color.White;
            this.button71.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button71, "button71");
            this.button71.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button71.Name = "button71";
            this.button82.ShowFocusBorder = false;
            // 
            // labelHeadline2
            // 
            resources.ApplyResources(this.labelHeadline2, "labelHeadline2");
            this.labelHeadline2.Name = "labelHeadline2";
            // 
            // labelHeadline3
            // 
            resources.ApplyResources(this.labelHeadline3, "labelHeadline3");
            this.labelHeadline3.Name = "labelHeadline3";
            // 
            // labelHeadline4
            // 
            resources.ApplyResources(this.labelHeadline4, "labelHeadline4");
            this.labelHeadline4.Name = "labelHeadline4";
            // 
            // labelQuoteText
            // 
            resources.ApplyResources(this.labelQuoteText, "labelQuoteText");
            this.labelQuoteText.Name = "labelQuoteText";
            // 
            // labelQuoteValue
            // 
            resources.ApplyResources(this.labelQuoteValue, "labelQuoteValue");
            this.labelQuoteValue.Name = "labelQuoteValue";
            // 
            // button80
            // 
            this.button80.BackColor = System.Drawing.Color.White;
            this.button80.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button80, "button80");
            this.button80.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button80.Name = "button80";
            this.button80.ShowFocusBorder = false;
            // 
            // button81
            // 
            this.button81.BackColor = System.Drawing.Color.White;
            this.button81.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button81, "button81");
            this.button81.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button81.Name = "button81";
            this.button82.ShowFocusBorder = false;
            // 
            // button82
            // 
            this.button82.BackColor = System.Drawing.Color.White;
            this.button82.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.button82, "button82");
            this.button82.ForeColor = System.Drawing.SystemColors.ControlText;
            this.button82.Name = "button82";
            this.button82.ShowFocusBorder = false;
            // 
            // buttonBack
            // 
            this.buttonBack.BackColor = System.Drawing.Color.White;
            this.buttonBack.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.buttonBack, "buttonBack");
            this.buttonBack.ForeColor = System.Drawing.SystemColors.ControlText;
            this.buttonBack.Name = "buttonBack";
            this.button82.ShowFocusBorder = false;
            // 
            // buttonOk
            // 
            this.buttonOk.BackColor = System.Drawing.Color.White;
            this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
            resources.ApplyResources(this.buttonOk, "buttonOk");
            this.buttonOk.ForeColor = System.Drawing.SystemColors.ControlText;
            this.buttonOk.Name = "buttonOk";
            this.button82.ShowFocusBorder = false;
            // 
            // buttonPrevious
            // 
            this.buttonPrevious.ActiveBackColor = System.Drawing.Color.Transparent;
            this.buttonPrevious.ActiveBorderColor = System.Drawing.Color.Transparent;
            this.buttonPrevious.ActiveForeColor = System.Drawing.Color.Transparent;
            this.buttonPrevious.BackColor = System.Drawing.Color.White;
            this.buttonPrevious.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            resources.ApplyResources(this.buttonPrevious, "buttonPrevious");
            this.buttonPrevious.ForeColor = System.Drawing.SystemColors.ControlText;
            this.buttonPrevious.Image = ((System.Drawing.Image)(resources.GetObject("button24.Image")));
            this.buttonPrevious.Name = "buttonPrevious";
            this.button82.ShowFocusBorder = false;
            // 
            // buttonNext
            // 
            this.buttonNext.ActiveBackColor = System.Drawing.Color.Transparent;
            this.buttonNext.ActiveBorderColor = System.Drawing.Color.Transparent;
            this.buttonNext.ActiveForeColor = System.Drawing.Color.Transparent;
            this.buttonNext.BackColor = System.Drawing.Color.White;
            this.buttonNext.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            resources.ApplyResources(this.buttonNext, "buttonNext");
            this.buttonNext.ForeColor = System.Drawing.SystemColors.ControlText;
            this.buttonNext.Image = ((System.Drawing.Image)(resources.GetObject("button25.Image")));
            this.buttonNext.Name = "buttonNext";
            this.button82.ShowFocusBorder = false;
            // 
            // FormSet
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            resources.ApplyResources(this, "$this");
            this.ControlBox = false;
            this.Controls.Add(this.buttonNext);
            this.Controls.Add(this.buttonPrevious);
            this.Controls.Add(this.buttonOk);
            this.Controls.Add(this.buttonBack);
            this.Controls.Add(this.labelQuoteValue);
            this.Controls.Add(this.labelQuoteText);
            this.Controls.Add(this.labelHeadline4);
            this.Controls.Add(this.labelHeadline3);
            this.Controls.Add(this.labelHeadline2);
            this.Controls.Add(this.button81);
            this.Controls.Add(this.button80);
            this.Controls.Add(this.button82);
            this.Controls.Add(this.button71);
            this.Controls.Add(this.button70);
            this.Controls.Add(this.button72);
            this.Controls.Add(this.labelNum8);
            this.Controls.Add(this.labelNum7);
            this.Controls.Add(this.button61);
            this.Controls.Add(this.button60);
            this.Controls.Add(this.button62);
            this.Controls.Add(this.labelNum6);
            this.Controls.Add(this.button51);
            this.Controls.Add(this.button50);
            this.Controls.Add(this.button52);
            this.Controls.Add(this.button41);
            this.Controls.Add(this.button40);
            this.Controls.Add(this.button42);
            this.Controls.Add(this.labelNum5);
            this.Controls.Add(this.labelNum4);
            this.Controls.Add(this.button31);
            this.Controls.Add(this.button30);
            this.Controls.Add(this.button32);
            this.Controls.Add(this.labelNum3);
            this.Controls.Add(this.button21);
            this.Controls.Add(this.button20);
            this.Controls.Add(this.button22);
            this.Controls.Add(this.button11);
            this.Controls.Add(this.button10);
            this.Controls.Add(button12);
            this.Controls.Add(this.labelNum2);
            this.Controls.Add(this.labelNum1);
            this.Controls.Add(this.button01);
            this.Controls.Add(this.button00);
            this.Controls.Add(this.button03);
            this.Controls.Add(this.labelHeadline1);
            this.Controls.Add(this.labelNum0);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.MinimizeBox = false;
            this.Name = "FormSet";
            this.Load += new System.EventHandler(this.load);
            this.ResumeLayout(false);
 
        }
 
        #endregion
 
        private System.Windows.Forms.Label labelNum0;
        private System.Windows.Forms.Label labelHeadline1;
        private Button2 button03;
        private Button2 button00;
        private Button2 button01;
        private System.Windows.Forms.Label labelNum1;
        private System.Windows.Forms.Label labelNum2;
        private Button2 button10;
        private Button2 button11;
        private Button2 button22;
        private Button2 button20;
        private Button2 button21;
        private System.Windows.Forms.Label labelNum3;
        private Button2 button32;
        private Button2 button30;
        private Button2 button31;
        private System.Windows.Forms.Label labelNum4;
        private System.Windows.Forms.Label labelNum5;
        private Button2 button42;
        private Button2 button40;
        private Button2 button41;
        private Button2 button52;
        private Button2 button50;
        private Button2 button51;
        private System.Windows.Forms.Label labelNum6;
        private Button2 button62;
        private Button2 button60;
        private Button2 button61;
        private System.Windows.Forms.Label labelNum7;
        private System.Windows.Forms.Label labelNum8;
        private Button2 button72;
        private Button2 button70;
        private Button2 button71;
        private System.Windows.Forms.Label labelHeadline2;
        private System.Windows.Forms.Label labelHeadline3;
        private System.Windows.Forms.Label labelHeadline4;
        private System.Windows.Forms.Label labelQuoteText;
        private System.Windows.Forms.Label labelQuoteValue;
        private Button2 button80;
        private Button2 button81;
        private Button2 button82;
        private Button2 buttonBack;
        private Button2 buttonOk;
        private Button2 buttonPrevious;
        private Button2 buttonNext;
 
 
 
 
 
 
    }
}
0
burning1ife
1465 / 1286 / 294
Регистрация: 21.09.2008
Сообщений: 3,438
Записей в блоге: 9
28.08.2009, 19:50 6
как называется сборка, которую в Reference добавляешь для "OpenNETCF.Windows.Forms", а то не могу ее нигде найти?
0
556 / 510 / 25
Регистрация: 23.07.2009
Сообщений: 2,359
Записей в блоге: 1
28.08.2009, 21:29  [ТС] 7
Цитата Сообщение от kenny69 Посмотреть сообщение
как называется сборка, которую в Reference добавляешь для "OpenNETCF.Windows.Forms", а то не могу ее нигде найти?
вот здесь оно лежит:

http://www.opennetcf.com/FreeS... fault.aspx

майкрософт там где сам не асиливает, тоже их рекомендует:

http://msdn.microsoft.com/en-u... 46485.aspx

или задайте в msdn поиск на "windows ce opennetcf", найдете море статей со ссылкой на этот пакет. просто майкрософт для смартдевайсов издал кастрированный вариант фреймворка, с которым хэлло, уорлд только и делать. а клиенты хотят красивые картиночки и прочие штучки, и разработчики привыкли иметь возможность хотя бы собственноручно запущенный процесс найти и грохнуть. а там этого всего нельзя. а эти ребята с этим пакетом все это возвращают назад. но геморройно все это получается.
1
28.08.2009, 21:29
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
28.08.2009, 21:29
Помогаю со студенческими работами здесь

Ошибка "Object reference not set to an instance of an object" при ListBox1SelectedIndexChanged
Доброго дня всем!!! Подскажите плиз почему это событие void Button2Click(object sender, EventArgs...

Ошибка "Object reference not set to an instance of an object"
Выбивает ошибку &quot;Additional information: Object reference not set to an instance of an object.&quot;....

NullReferenceException: Object reference not set to an instance of an object в FindObjectType как исправить?
Ошибка NullReferenceException: Object reference not set to an instance of an object в...

Скрипт не работает - NullReferenceException: Object reference not set to an instance of an object MissionSay.S
Нужный элемент со скриптом MissionPlayer.cs есть Версия Unity: 5.4.1 Код: using...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
7
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru