Subversion Repositories Projects

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2504 - 1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>OpenNETCF.Windows.Forms</name>
5
    </assembly>
6
    <members>
7
        <member name="T:OpenNETCF.Windows.Forms.AnimateCtl">
8
            <summary>
9
            Animates an image.
10
            </summary>
11
        </member>
12
        <member name="T:OpenNETCF.Windows.Forms.IWin32Window">
13
             <summary>
14
             Provides an interface to expose Win32 HWND handles.
15
             </summary>
16
             <remarks>This interface is implemented on objects that expose Win32 HWND handles.
17
             The resultant handle can be used with Win32 API calls.
18
             <para>Unlike the desktop .NET Framework this interface is not implemented in the base <see cref="T:System.Windows.Forms.Control"/> class.
19
             However you can implement it on any class which derives from <see cref="T:System.Windows.Forms.Control"/> or <see cref="T:System.Windows.Forms.Form"/>.
20
             The <see cref="P:OpenNETCF.Windows.Forms.IWin32Window.Handle"/> property can then be passed to native API functions such as those contained in the <see cref="T:OpenNETCF.Win32.Win32Window"/> class.</para></remarks>
21
             <example>
22
             <code>
23
             [VB]
24
             Imports OpenNETCF.Windows.Forms
25
             Imports OpenNETCF.Win32
26
 
27
             Public Class MyControl
28
            		Inherits System.Windows.Forms.Control
29
            		Implements IWin32Window
30
 
31
            		Overridable ReadOnly Property Handle() As System.IntPtr
32
            			Get
33
            				Me.Capture = True
34
            				Dim thishandle As IntPtr
35
            				thishandle = Win32Window.GetCapture()
36
            				Me.Capture = False
37
 
38
            				Handle = thishandle
39
            			End Get
40
            		End Property
41
 
42
             End Class
43
             </code>
44
             <code>
45
             [C#]
46
             using OpenNETCF.Windows.Forms;
47
             using OpenNETCF.Win32;
48
 
49
             public class MyControl : Control, IWin32Window
50
             {
51
 
52
            		public IntPtr Handle
53
            		{
54
            			get
55
            			{
56
            				this.Capture = true;
57
            				IntPtr thishandle = Win32Window.GetCapture();
58
            				this.Capture = false;
59
 
60
            				return thishandle;
61
            			}
62
            		}
63
             }</code>
64
             </example>
65
        </member>
66
        <member name="P:OpenNETCF.Windows.Forms.IWin32Window.Handle">
67
            <summary>
68
            Gets the handle to the window represented by the implementer.
69
            </summary>
70
        </member>
71
        <member name="F:OpenNETCF.Windows.Forms.AnimateCtl._bitmap">
72
            <summary>
73
            The bitmap to animate.  Can be a GIF or BMP
74
            </summary>
75
        </member>
76
        <member name="F:OpenNETCF.Windows.Forms.AnimateCtl._frameCount">
77
            <summary>
78
            The number of frames in the image
79
            </summary>
80
        </member>
81
        <member name="F:OpenNETCF.Windows.Forms.AnimateCtl._frameWidth">
82
            <summary>
83
            The width of a frame
84
            </summary>
85
        </member>
86
        <member name="F:OpenNETCF.Windows.Forms.AnimateCtl._frameHeight">
87
            <summary>
88
            The Height of the frame
89
            </summary>
90
        </member>
91
        <member name="F:OpenNETCF.Windows.Forms.AnimateCtl.animating">
92
            <summary>
93
            Value to see if the control is animating
94
            </summary>
95
        </member>
96
        <member name="F:OpenNETCF.Windows.Forms.AnimateCtl._currentFrame">
97
            <summary>
98
            Number of frames available
99
            </summary>
100
        </member>
101
        <member name="F:OpenNETCF.Windows.Forms.AnimateCtl._loopCount">
102
            <summary>
103
            Number of times to loop the animation
104
            </summary>
105
        </member>
106
        <member name="F:OpenNETCF.Windows.Forms.AnimateCtl._loopCounter">
107
            <summary>
108
            Number of times the animation as looped
109
            </summary>
110
        </member>
111
        <member name="F:OpenNETCF.Windows.Forms.AnimateCtl._delayInterval">
112
            <summary>
113
            Delay interval for the animation
114
            </summary>
115
        </member>
116
        <member name="F:OpenNETCF.Windows.Forms.AnimateCtl.fTimer">
117
            <summary>
118
            The timer for the animation
119
            </summary>
120
        </member>
121
        <member name="F:OpenNETCF.Windows.Forms.AnimateCtl.drawDirection">
122
            <summary>
123
            The direction of the animiation
124
            </summary>
125
        </member>
126
        <member name="F:OpenNETCF.Windows.Forms.AnimateCtl.autoStartAnimation">
127
            <summary>
128
            Whether the animiation should autostart
129
            </summary>
130
        </member>
131
        <member name="M:OpenNETCF.Windows.Forms.AnimateCtl.#ctor">
132
            <summary>
133
            Default contructor
134
            </summary>
135
        </member>
136
        <member name="M:OpenNETCF.Windows.Forms.AnimateCtl.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
137
            <summary>
138
            Override the painBackground to avoid flickering
139
            </summary>
140
            <param name="e"></param>
141
        </member>
142
        <member name="M:OpenNETCF.Windows.Forms.AnimateCtl.StartAnimation">
143
            <summary>
144
            Begin animating the image
145
            </summary>
146
        </member>
147
        <member name="M:OpenNETCF.Windows.Forms.AnimateCtl.StopAnimation">
148
            <summary>
149
            Stops the current animation
150
            </summary>
151
        </member>
152
        <member name="M:OpenNETCF.Windows.Forms.AnimateCtl.DrawFrame(System.Drawing.Graphics)">
153
            <summary>
154
            Draw the frame
155
            </summary>
156
        </member>
157
        <member name="M:OpenNETCF.Windows.Forms.AnimateCtl.Draw(System.Int32,System.Drawing.Graphics)">
158
            <summary>
159
            Draw the image
160
            </summary>
161
            <param name="iframe"></param>
162
            <param name="g"></param>
163
        </member>
164
        <member name="M:OpenNETCF.Windows.Forms.AnimateCtl.BackgroundImageColor(System.Drawing.Image)">
165
            <summary>
166
            Gets the background color to make transparent
167
            </summary>
168
            <param name="image"></param>
169
            <returns></returns>
170
        </member>
171
        <member name="M:OpenNETCF.Windows.Forms.AnimateCtl.ResizeControl">
172
            <summary>
173
            Resize the animation control
174
            </summary>
175
        </member>
176
        <member name="F:OpenNETCF.Windows.Forms.AnimateCtl.components">
177
            <summary>
178
            Required designer variable.
179
            </summary>
180
        </member>
181
        <member name="M:OpenNETCF.Windows.Forms.AnimateCtl.Dispose(System.Boolean)">
182
            <summary>
183
            Clean up any resources being used.
184
            </summary>
185
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
186
        </member>
187
        <member name="M:OpenNETCF.Windows.Forms.AnimateCtl.InitializeComponent">
188
            <summary>
189
            Required method for Designer support - do not modify
190
            the contents of this method with the code editor.
191
            </summary>
192
        </member>
193
        <member name="M:OpenNETCF.Windows.Forms.AnimateCtl.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
194
            <summary>
195
            Animates an image.
196
            </summary>
197
        </member>
198
        <member name="P:OpenNETCF.Windows.Forms.AnimateCtl.AnimDrawDirection">
199
            <summary>
200
            The direction of the sequence of images in the image file.
201
            </summary>
202
        </member>
203
        <member name="P:OpenNETCF.Windows.Forms.AnimateCtl.DrawDirection">
204
            <summary>
205
            The direction of the sequence of images in the image file.
206
            </summary>
207
        </member>
208
        <member name="P:OpenNETCF.Windows.Forms.AnimateCtl.Image">
209
            <summary>
210
            The image to animate.
211
            </summary>
212
        </member>
213
        <member name="P:OpenNETCF.Windows.Forms.AnimateCtl.Height">
214
            <summary>
215
            Gets or sets the Height of the control
216
            </summary>
217
        </member>
218
        <member name="P:OpenNETCF.Windows.Forms.AnimateCtl.Width">
219
            <summary>
220
            Gets or sets the width of the control
221
            </summary>
222
        </member>
223
        <member name="P:OpenNETCF.Windows.Forms.AnimateCtl.FrameWidth">
224
            <summary>
225
            Gets or sets  the width of the frame to animate
226
            </summary>
227
        </member>
228
        <member name="P:OpenNETCF.Windows.Forms.AnimateCtl.FrameHeight">
229
            <summary>
230
            Gets or sets  the height of the frame to animate
231
            </summary>
232
        </member>
233
        <member name="P:OpenNETCF.Windows.Forms.AnimateCtl.DelayInterval">
234
            <summary>
235
            Gets or sets the delay interval for the control
236
            </summary>
237
        </member>
238
        <member name="P:OpenNETCF.Windows.Forms.AnimateCtl.LoopCount">
239
            <summary>
240
            Gets or sets  the amount of times to loop the animation. -1 to loop infinitly.
241
            </summary>
242
        </member>
243
        <member name="P:OpenNETCF.Windows.Forms.AnimateCtl.AutoStartAnimation">
244
            <summary>
245
            Gets or sets whether the animation should auto start.
246
            </summary>
247
        </member>
248
        <member name="T:OpenNETCF.Windows.Forms.Application2">
249
            <summary>
250
            Provides static (Shared in Visual Basic) methods and properties to manage an application, such as methods to start and stop an application, to process Windows messages, and properties to get information about an application. This class cannot be inherited.
251
            </summary>
252
        </member>
253
        <member name="M:OpenNETCF.Windows.Forms.Application2.Run(System.Boolean)">
254
            <summary>
255
            Begins running a standard application message loop on the current thread, without a form.
256
            </summary>
257
            <param name="runAsSingletonApp">When <b>true</b>, if an existing instance of the app is already running, the current application instance will simply exit</param>
258
        </member>
259
        <member name="M:OpenNETCF.Windows.Forms.Application2.Run(System.Windows.Forms.Form,System.Boolean)">
260
            <summary>
261
            Begins running a standard application message loop on the current thread, and makes the specified form visible.
262
            </summary>
263
            <param name="mainForm">Form on which main message loop runs</param>
264
            <param name="runAsSingletonApp">When <b>true</b>, if an existing instance of the app is already running, the current application instance will simply exit and the already running app will come to the fore</param>
265
        </member>
266
        <member name="M:OpenNETCF.Windows.Forms.Application2.Run(System.Windows.Forms.Form,System.Boolean,System.Boolean)">
267
            <summary>
268
            Begins running a standard application message loop on the current thread, and makes the specified form visible.
269
            </summary>
270
            <param name="mainForm">Form on which main message loop runs</param>
271
            <param name="runAsSingletonApp">When <b>true</b>, if an existing instance of the app is already running, the current application instance will simply exit and the already running app will come to the fore</param>
272
            <param name="displayMainForm">When set to true, the main form will be automatically displayed, else the app will be responsible for showing the Form</param>
273
        </member>
274
        <member name="M:OpenNETCF.Windows.Forms.Application2.Run">
275
            <summary>
276
            Begins running a standard application message loop on the current thread, without a form
277
            </summary>
278
        </member>
279
        <member name="M:OpenNETCF.Windows.Forms.Application2.Run(System.Windows.Forms.Form)">
280
            <summary>
281
            Begins running a standard application message loop on the current thread, and makes the specified form visible.
282
            <seealso cref="T:System.Windows.Forms.Form"/>
283
            </summary>
284
            <param name="mainForm">Form on which main message loop runs</param>
285
        </member>
286
        <member name="M:OpenNETCF.Windows.Forms.Application2.Exit">
287
            <summary>
288
            Informs all message pumps that they must terminate, and then closes all application windows after the messages have been processed.
289
            </summary>
290
        </member>
291
        <member name="M:OpenNETCF.Windows.Forms.Application2.DoEvents">
292
            <summary>
293
            Processes all Windows messages currently in the message queue.
294
            </summary>
295
        </member>
296
        <member name="M:OpenNETCF.Windows.Forms.Application2.AddMessageFilter(OpenNETCF.Windows.Forms.IMessageFilter)">
297
            <summary>
298
            Adds a message filter to monitor Windows messages as they are routed to their destinations
299
            <seealso cref="T:OpenNETCF.Windows.Forms.IMessageFilter"/>
300
            </summary>
301
            <param name="value">The implementation of the IMessageFilter interface you want to install</param>
302
        </member>
303
        <member name="M:OpenNETCF.Windows.Forms.Application2.RemoveMessageFilter(OpenNETCF.Windows.Forms.IMessageFilter)">
304
            <summary>
305
            Removes a message filter from the message pump of the application
306
            <seealso cref="T:OpenNETCF.Windows.Forms.IMessageFilter"/>
307
            </summary>
308
            <param name="value">The implementation of the IMessageFilter to remove from the application.</param>
309
        </member>
310
        <member name="E:OpenNETCF.Windows.Forms.Application2.ThreadExit">
311
            <summary>
312
            Occurs when Application2.Run exits
313
            <seealso cref="M:OpenNETCF.Windows.Forms.Application2.Exit"/>
314
            </summary>
315
        </member>
316
        <member name="E:OpenNETCF.Windows.Forms.Application2.ApplicationExit">
317
            <summary>
318
            Occurs when the application is about to shut down.
319
            </summary>
320
        </member>
321
        <member name="P:OpenNETCF.Windows.Forms.Application2.MessageLoop">
322
            <summary>
323
            Gets a value indicating whether a message loop exists on this thread.
324
            </summary>
325
        </member>
326
        <member name="P:OpenNETCF.Windows.Forms.Application2.StartupPath">
327
            <summary>
328
            Gets the path for the currently executing assembly file, not including the executable name.
329
            </summary>
330
            <value>The path for the executable file that started the application.</value>
331
        </member>
332
        <member name="P:OpenNETCF.Windows.Forms.Application2.ExecutablePath">
333
            <summary>
334
            Gets the path for the executable file that started the application, including the executable name.
335
            </summary>
336
            <value>The path and executable name for the executable file that started the application.</value>
337
        </member>
338
        <member name="T:OpenNETCF.Windows.Forms.BatteryChargeStatus">
339
            <summary>
340
            Defines identifiers that indicate the current battery charge level or charging state information.
341
            </summary>
342
        </member>
343
        <member name="F:OpenNETCF.Windows.Forms.BatteryChargeStatus.High">
344
            <summary>
345
            Indicates a high level of battery charge.
346
            </summary>
347
        </member>
348
        <member name="F:OpenNETCF.Windows.Forms.BatteryChargeStatus.Low">
349
            <summary>
350
            Indicates a low level of battery charge.
351
            </summary>
352
        </member>
353
        <member name="F:OpenNETCF.Windows.Forms.BatteryChargeStatus.Critical">
354
            <summary>
355
            Indicates a critically low level of battery charge.
356
            </summary>
357
        </member>
358
        <member name="F:OpenNETCF.Windows.Forms.BatteryChargeStatus.Charging">
359
            <summary>
360
            Indicates a battery is charging.
361
            </summary>
362
        </member>
363
        <member name="F:OpenNETCF.Windows.Forms.BatteryChargeStatus.NoSystemBattery">
364
            <summary>
365
            Indicates that no battery is present.
366
            </summary>
367
        </member>
368
        <member name="F:OpenNETCF.Windows.Forms.BatteryChargeStatus.Unknown">
369
            <summary>
370
            Indicates an unknown battery condition.
371
            </summary>
372
        </member>
373
        <member name="T:OpenNETCF.Windows.Forms.BatteryChemistry">
374
            <summary>
375
            Identifies the chemistry of the devices main battery.
376
            </summary>
377
            <remarks>This enumeration is used by the <see cref="P:OpenNETCF.Windows.Forms.PowerStatus.BatteryChemistry"/> property.</remarks>
378
        </member>
379
        <member name="F:OpenNETCF.Windows.Forms.BatteryChemistry.Alkaline">
380
            <summary>
381
            Alkaline battery.
382
            </summary>
383
        </member>
384
        <member name="F:OpenNETCF.Windows.Forms.BatteryChemistry.NiCad">
385
            <summary>
386
            Nickel Cadmium battery.
387
            </summary>
388
        </member>
389
        <member name="F:OpenNETCF.Windows.Forms.BatteryChemistry.NiMH">
390
            <summary>
391
            Nickel Metal Hydride battery.
392
            </summary>
393
        </member>
394
        <member name="F:OpenNETCF.Windows.Forms.BatteryChemistry.Lion">
395
            <summary>
396
            Lithium Ion battery.
397
            </summary>
398
        </member>
399
        <member name="F:OpenNETCF.Windows.Forms.BatteryChemistry.LiPoly">
400
            <summary>
401
            Lithium Polymer battery.
402
            </summary>
403
        </member>
404
        <member name="F:OpenNETCF.Windows.Forms.BatteryChemistry.ZincAir">
405
            <summary>
406
            Zinc Air battery.
407
            </summary>
408
        </member>
409
        <member name="F:OpenNETCF.Windows.Forms.BatteryChemistry.Unknown">
410
            <summary>
411
            Battery chemistry is unknown.
412
            </summary>
413
        </member>
414
        <member name="T:OpenNETCF.Windows.Forms.BatteryLife">
415
             <summary>
416
             Represents a control that indicates the percentage of remaining battery life.
417
             </summary>
418
             <remarks>This control will not work as expected on the emulator since, in the current release, battery life is not emulated.</remarks>
419
             <example>
420
             <code>
421
             [C#]
422
             public class Form1 : System.Windows.Forms.Form
423
             {
424
            	private OpenNETCF.Windows.Forms.BatteryLife batteryLife1;
425
            	private System.Windows.Forms.Button button1;
426
 
427
            	public Form1()
428
            	{
429
            		batteryLife1 = new OpenNETCF.Windows.Forms.BatteryLife();
430
            		button1 = new System.Windows.Forms.Button();
431
            		button1.Click += new System.EventHandler(button1_Click);
432
            	}
433
 
434
            	private void button1_Click(object sender, EventArgs e)
435
            	{
436
            		// Call the UpdateBatteryLife method when the percentage bar should be refreshed with the latest battery life status.
437
            		batteryLife1.UpdateBatteryLife();
438
            	}
439
             }
440
             </code>
441
             </example>
442
        </member>
443
        <member name="M:OpenNETCF.Windows.Forms.BatteryLife.#ctor">
444
            <summary>
445
            Initializes a new instance of the BatteryLife class.
446
            </summary>
447
        </member>
448
        <member name="M:OpenNETCF.Windows.Forms.BatteryLife.Finalize">
449
            <summary>
450
            Allows an instance of the BatteryLife class to attempt to free resources and perform other cleanup operations.
451
            </summary>
452
        </member>
453
        <member name="M:OpenNETCF.Windows.Forms.BatteryLife.Dispose">
454
            <summary>
455
            Releases all resources used by the BatteryLife instance.
456
            </summary>
457
        </member>
458
        <member name="M:OpenNETCF.Windows.Forms.BatteryLife.Dispose(System.Boolean)">
459
            <summary>
460
            Releases the unmanaged resources used by the BatteryLife instance and optionally releases the managed resources.
461
            </summary>
462
            <param name="disposing"><b>true</b> to release both managed and unmanaged resources; <b>false</b> to release only unmanaged resources.</param>
463
        </member>
464
        <member name="M:OpenNETCF.Windows.Forms.BatteryLife.OnPaint(System.Windows.Forms.PaintEventArgs)">
465
            <summary>
466
            Raises the Paint event.
467
            </summary>
468
            <param name="e">A PaintEventArgs that contains the event data.</param>
469
        </member>
470
        <member name="M:OpenNETCF.Windows.Forms.BatteryLife.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
471
            <summary>
472
            Paints the background of the control.
473
            </summary>
474
            <param name="e">A PaintEventArgs that contains information about the control to paint.</param>
475
            <remarks>
476
            <b>Notes to Inheritors:</b> With the the hope of preventing noticeable flicker, this method has be overridden to do nothing. Therefore, all painting should be done in the OnPaint method.
477
            </remarks>
478
        </member>
479
        <member name="M:OpenNETCF.Windows.Forms.BatteryLife.OnResize(System.EventArgs)">
480
            <summary>
481
            Raises the Resize event.
482
            </summary>
483
            <param name="e">An EventArgs that contains the event data.</param>
484
        </member>
485
        <member name="M:OpenNETCF.Windows.Forms.BatteryLife.UpdateBatteryLife">
486
            <summary>
487
            Updates the display that represents the percentage of remaining battery life.
488
            </summary>
489
            <remarks>In addition to updating the display this method also refreshes the value of the PowerStatus property.</remarks>
490
        </member>
491
        <member name="M:OpenNETCF.Windows.Forms.BatteryLife.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
492
             <summary>
493
             Represents a control that indicates the percentage of remaining battery life.
494
             </summary>
495
             <remarks>This control will not work as expected on the emulator since, in the current release, battery life is not emulated.</remarks>
496
             <example>
497
             <code>
498
             [C#]
499
             public class Form1 : System.Windows.Forms.Form
500
             {
501
            	private OpenNETCF.Windows.Forms.BatteryLife batteryLife1;
502
            	private System.Windows.Forms.Button button1;
503
 
504
            	public Form1()
505
            	{
506
            		batteryLife1 = new OpenNETCF.Windows.Forms.BatteryLife();
507
            		button1 = new System.Windows.Forms.Button();
508
            		button1.Click += new System.EventHandler(button1_Click);
509
            	}
510
 
511
            	private void button1_Click(object sender, EventArgs e)
512
            	{
513
            		// Call the UpdateBatteryLife method when the percentage bar should be refreshed with the latest battery life status.
514
            		batteryLife1.UpdateBatteryLife();
515
            	}
516
             }
517
             </code>
518
             </example>
519
        </member>
520
        <member name="P:OpenNETCF.Windows.Forms.BatteryLife.BorderColor">
521
            <summary>
522
            Gets or sets the color of the border for the control.
523
            </summary>
524
            <value>A <see cref="T:System.Drawing.Color" /> value that represents the border color of the control. The default is Color.Black.</value>
525
        </member>
526
        <member name="P:OpenNETCF.Windows.Forms.BatteryLife.PercentageBarColor">
527
            <summary>
528
            Gets or sets the color used to display the percentage of remaining battery life.
529
            </summary>
530
            <value>A <see cref="T:System.Drawing.Color" /> value that represents the color used to display the percentage of remaining battery life. The default is SystemColors.Highlight.</value>
531
        </member>
532
        <member name="P:OpenNETCF.Windows.Forms.BatteryLife.PowerStatus">
533
            <summary>
534
            Gets the system power status information.
535
            </summary>
536
            <value>A <see cref="T:OpenNETCF.Windows.Forms.PowerStatus" /> that represents the system power status information.</value>
537
        </member>
538
        <member name="T:OpenNETCF.Windows.Forms.BatteryMonitor">
539
             <summary>
540
             Represents a component that monitors the battery level.
541
             </summary>
542
             <example>
543
             <code>
544
             [C#]
545
             public class Form1 : System.Windows.Forms.Form
546
             {
547
            	private System.ComponentModel.IContainer components = null;
548
            	private OpenNETCF.Windows.Forms.BatteryMonitor batteryMonitor1;
549
 
550
            	public Form1()
551
            	{
552
            		batteryMonitor1 = new OpenNETCF.Windows.Forms.BatteryMonitor(components);
553
            		batteryMonitor1.PrimaryBatteryLifeTrigger = 75;
554
            		batteryMonitor1.PrimaryBatteryLifeNotification += new System.EventHandler(batteryMonitor1_PrimaryBatteryLifeNotification);
555
            		batteryMonitor1.Enabled = true;
556
            	}
557
 
558
            	protected override void Dispose(bool disposing)
559
            	{
560
            		if ((disposing) &amp;&amp; (components != null))
561
            		{
562
            			components.Dispose();
563
            		}
564
            		base.Dispose(disposing);
565
            	}
566
 
567
            	private void batteryMonitor1_PrimaryBatteryLifeNotification(object sender, EventArgs e)
568
            	{
569
            		// Do something here.
570
            	}
571
             }
572
             </code>
573
             </example>
574
        </member>
575
        <member name="F:OpenNETCF.Windows.Forms.BatteryMonitor.DefaultBatteryLifePercent">
576
            <summary>
577
            Specifies the default value for the PrimaryBatteryLifeTrigger property.
578
            </summary>
579
        </member>
580
        <member name="M:OpenNETCF.Windows.Forms.BatteryMonitor.#ctor">
581
            <summary>
582
            Initializes a new instance of the BatteryMonitor class.
583
            </summary>
584
        </member>
585
        <member name="M:OpenNETCF.Windows.Forms.BatteryMonitor.#ctor(System.ComponentModel.IContainer)">
586
            <summary>
587
            Initializes a new instance of the BatteryMonitor class with the specified container.
588
            </summary>
589
            <param name="container">An IContainer that represents the container for the BatteryMonitor.</param>
590
        </member>
591
        <member name="M:OpenNETCF.Windows.Forms.BatteryMonitor.Finalize">
592
            <summary>
593
            Allows an instance of the BatteryMonitor class to attempt to free resources and perform other cleanup operations.
594
            </summary>
595
        </member>
596
        <member name="M:OpenNETCF.Windows.Forms.BatteryMonitor.Dispose">
597
            <summary>
598
            Releases all resources used by the BatteryMonitor instance.
599
            </summary>
600
        </member>
601
        <member name="M:OpenNETCF.Windows.Forms.BatteryMonitor.Dispose(System.Boolean)">
602
            <summary>
603
            Releases the unmanaged resources used by the BatteryMonitor instance and optionally releases the managed resources.
604
            </summary>
605
            <param name="disposing"><b>true</b> to release both managed and unmanaged resources; <b>false</b> to release only unmanaged resources.</param>
606
        </member>
607
        <member name="M:OpenNETCF.Windows.Forms.BatteryMonitor.OnPrimaryBatteryLifeNotification(System.EventArgs)">
608
            <summary>
609
            Raises the PrimaryBatteryLifeNotification event.
610
            </summary>
611
            <param name="e">An EventArgs that contains the event data.</param>
612
        </member>
613
        <member name="M:OpenNETCF.Windows.Forms.BatteryMonitor.Timer_Tick(System.Object,System.EventArgs)">
614
            <summary>
615
            The event handler used to determine if notifications should be sent to subscribers.
616
            </summary>
617
        </member>
618
        <member name="P:OpenNETCF.Windows.Forms.BatteryMonitor.Enabled">
619
            <summary>
620
            Gets or sets a value that represents whether the power notification events will be raised.
621
            </summary>
622
            <value>A <see cref="T:System.Boolean" /> value that represents whether the power notification events will be raised. The default is <b>false</b>.</value>
623
        </member>
624
        <member name="P:OpenNETCF.Windows.Forms.BatteryMonitor.Interval">
625
            <summary>
626
            Gets or sets a value that represents how often the system power is queried, in milliseconds.
627
            </summary>
628
            <value>A <see cref="T:System.Int32" /> value that represents how often the system power is queried, in milliseconds. The default is 1000 (1 second).</value>
629
        </member>
630
        <member name="P:OpenNETCF.Windows.Forms.BatteryMonitor.PrimaryBatteryLifeTrigger">
631
            <summary>
632
            Gets or sets a value that represents the percentage at which the PrimaryBatteryLifeNotification event should be raised.
633
            </summary>
634
            <value>A <see cref="T:System.Int32" /> value that represents the percentage at which the PrimaryBatteryLifeNotification event should be raised. The default is the value of the DefaultBatteryLifePercent constant.</value>
635
        </member>
636
        <member name="E:OpenNETCF.Windows.Forms.BatteryMonitor.PrimaryBatteryLifeNotification">
637
            <summary>
638
            Occurs when the primary battery life percentage is equal to the value of the PrimaryBatteryLifeTrigger property.
639
            </summary>
640
            <remarks>
641
            The Enabled property will be set to <b>false</b> when this event is raised. This prevents
642
            event handlers from being called multiple times while the trigger is satisfied. To receive
643
            further power notifications the Enabled property must once again be set to <b>true</b>.
644
            </remarks>
645
        </member>
646
        <member name="T:OpenNETCF.Windows.Forms.Button2">
647
            <summary>
648
            Represents a button control.
649
            </summary>
650
        </member>
651
        <member name="T:OpenNETCF.Windows.Forms.ButtonBase2">
652
            <summary>
653
            Implements the basic functionality common to button controls.
654
            </summary>
655
        </member>
656
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.#ctor">
657
            <summary>
658
            Initializes the base information for a class derived from ButtonBase2.
659
            </summary>
660
        </member>
661
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.Dispose(System.Boolean)">
662
            <summary>
663
            Releases the unmanaged resources used by the ButtonBase2 and optionally releases the managed resources.
664
            </summary>
665
            <param name="disposing"><b>true</b> to release both managed and unmanaged resources; <b>false</b> to release only unmanaged resources.</param>
666
        </member>
667
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.DisposeDoubleBuffer">
668
            <summary>
669
            Clean up the objects used to represent the double buffer for the presentation of the control.
670
            </summary>
671
        </member>
672
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.DrawDoubleBuffer(System.Drawing.Graphics)">
673
            <summary>
674
            Draws the contents of the buffer to the control if the presentation was double buffered.
675
            </summary>
676
            <param name="controlGraphics">A <see cref="T:System.Drawing.Graphics"/> object representing the drawing surface of the control in which to output the contents of the buffer.</param>
677
        </member>
678
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.GetPresentationMedium(System.Drawing.Graphics)">
679
            <summary>
680
            Gets a reference to the proper drawing medium used to update the presentation of the control.
681
            </summary>
682
            <param name="controlGraphics">A <see cref="T:System.Drawing.Graphics"/> object representing the drawing surface of the control.</param>
683
            <returns>A <see cref="T:System.Drawing.Graphics"/> object that should be used to update the presentation of the control.</returns>
684
            <remarks>
685
            The <see cref="T:System.Drawing.Graphics"/> object returned from this method will either be a reference to the buffer, if the DoubleBuffered property is set to <b>true</b>, or the reference to the drawing surface of the control that was provided as the argument.
686
            </remarks>
687
        </member>
688
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.IsSequentialPaintingComplete(System.Int32)">
689
            <summary>
690
            Determines if the specified sequential painting token was the last one registered.
691
            </summary>
692
            <param name="sequentialPaintingToken">A <see cref="T:System.Int32"/> that specifies the sequential painting token to compare with the last registered token.</param>
693
            <returns>A <see cref="T:System.Boolean"/> that is set to <b>true</b> if the specified sequential painting token was the last one registered; otherwise, <b>false</b>.</returns>
694
            <remarks>
695
            A control can register for sequential painting by calling the RegisterSequentialPainting method.
696
            </remarks>
697
        </member>
698
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.NotifyPaintingComplete(System.Int32,System.Windows.Forms.PaintEventArgs)">
699
            <summary>
700
            Indicates that a certain class (generation) in the control hierarchy has completed updating the presentation.
701
            </summary>
702
            <param name="sequentialPaintingToken">A <see cref="T:System.Int32"/> that specifies the sequential painting token of the class (generation) that has completed updating the presentation.</param>
703
            <param name="args">A <see cref="T:System.Windows.Forms.PaintEventArgs"/> that references the original paint argument passed to the OnPaint method.</param>
704
            <remarks>
705
            If the sequential painting token argument represents the last token registered, this method will raise the Paint event, using the double buffer <see cref="T:System.Drawing.Graphics"/> object if the DoubleBuffered property is set to <b>true</b>, and will also draw the contents of the buffer to the control, if applicable.
706
            </remarks>
707
        </member>
708
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
709
            <summary>
710
            Raises the KeyDown event.
711
            </summary>
712
            <param name="e">A KeyEventArgs that contains the event data.</param>
713
        </member>
714
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.OnPaint(System.Windows.Forms.PaintEventArgs)">
715
             <summary>
716
             Raises the Paint event.
717
             </summary>
718
             <param name="e">A PaintEventArgs that contains the event data.</param>
719
             <remarks>
720
             <b>Notes to Inheritors:</b> See the example section for the recommended pattern to ensure that double buffering and structured paint sequencing are both accommodated.
721
             </remarks>
722
             <example>
723
             <code>
724
             [C#]
725
             namespace MyCompanyName.TechnologyName
726
             {
727
               public class Button : OpenNETCF.Windows.Forms.ButtonBase2
728
               {
729
                 private readonly int sequentialPaintingToken = Int32.MinValue;
730
 
731
                 public Button()
732
                 {
733
                   // Note: The RegisterSequentialPainting method should only be called if the OnPaint method,
734
                   // in this class, is to be overridden.
735
                   // Register in the sequential painting process so that, primarily, if this class is the most
736
                   // derived class in the hierarchy that needs to update the presentation of the control, the
737
                   // Paint event may be delayed until all classes in the hierarchy have had a chance to update
738
                   // the presentation.
739
                   this.sequentialPaintingToken = base.RegisterSequentialPainting();
740
 
741
                   // Note: Double buffering does not need to be enabled for sequential painting to take place.
742
                   // Request that the presentation be buffered before being drawn to the control.
743
                   base.DoubleBuffered = true;
744
                 }
745
 
746
                 protected override void OnPaint(System.Windows.Forms.PaintEventArgs e)
747
                 {
748
                   // Call the base classes OnPaint method to ensure that all appropriate base painting has been
749
                   // done prior to performing the presentation contribution of this class.
750
                   base.OnPaint(e);
751
 
752
                   // Get a reference to the proper Graphics object used to update the presentation of the control.
753
                   Graphics presentation = base.GetPresentationMedium(e.Graphics);
754
 
755
                   // ...
756
                   // presentation.FillRectangle(Brush, X, Y, Width, Height);
757
                   // ...
758
 
759
                   // Indicate that this class is done updating the presentation. If the sequential paint token
760
                   // for this class was the last one registered, then the Paint event will be triggered, and,
761
                   // if the presentation was double buffered, the contents of the buffer will be drawn to the
762
                   // control.
763
                   base.NotifyPaintingComplete(this.sequentialPaintingToken, e);
764
                 }
765
               }
766
             }
767
             </code>
768
             </example>
769
        </member>
770
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
771
            <summary>
772
            Paints the background of the control.
773
            </summary>
774
            <param name="e">A PaintEventArgs that contains information about the control to paint.</param>
775
            <remarks>
776
            <b>Notes to Inheritors:</b> With the the hope of preventing noticeable flicker, this method has be overridden to do nothing. Therefore, all painting should be done in the OnPaint method.
777
            </remarks>
778
        </member>
779
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.OnResize(System.EventArgs)">
780
            <summary>
781
            Raises the Resize event.
782
            </summary>
783
            <param name="e">An EventArgs that contains the event data.</param>
784
        </member>
785
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.RaisePaintEvent(System.Windows.Forms.PaintEventArgs)">
786
            <summary>
787
            Explicitly raises the Paint event with double buffer awareness.
788
            </summary>
789
            <param name="args">A <see cref="T:System.Windows.Forms.PaintEventArgs"/> that references the original paint argument passed to the OnPaint method.</param>
790
            <remarks>
791
            If the DoubleBuffered property is set to <b>true</b>, the double buffer <see cref="T:System.Drawing.Graphics"/> object will be passed through the event.
792
            </remarks>
793
        </member>
794
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.RegisterSequentialPainting">
795
            <summary>
796
            Registers the caller in the sequential painting process by generating a token that the caller can use to identify its sequencing order.
797
            </summary>
798
            <returns>A <see cref="T:System.Int32"/> that represents a sequential painting token.</returns>
799
            <remarks>
800
            The token generated by this method should be stored by the caller and passed back to this class when calling methods such as NotifyPaintingComplete or IsSequentialPaintingComplete.
801
            </remarks>
802
        </member>
803
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.ResetImage">
804
            <summary>
805
            Resets the Image property to its default value.
806
            </summary>
807
        </member>
808
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.ResetImageAlign">
809
            <summary>
810
            Resets the ImageAlign property to its default value.
811
            </summary>
812
        </member>
813
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.ResetTextAlign">
814
            <summary>
815
            Resets the TextAlign property to its default value.
816
            </summary>
817
        </member>
818
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.ShouldSerializeImage">
819
            <summary>
820
            Indicates whether the Image property should be persisted.
821
            </summary>
822
            <returns><b>true</b> if the property value has changed from its default; otherwise, <b>false</b>.</returns>
823
        </member>
824
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.ShouldSerializeImageAlign">
825
            <summary>
826
            Indicates whether the ImageAlign property should be persisted.
827
            </summary>
828
            <returns><b>true</b> if the property value has changed from its default; otherwise, <b>false</b>.</returns>
829
        </member>
830
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.ShouldSerializeTextAlign">
831
            <summary>
832
            Indicates whether the TextAlign property should be persisted.
833
            </summary>
834
            <returns><b>true</b> if the property value has changed from its default; otherwise, <b>false</b>.</returns>
835
        </member>
836
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.UpdateDoubleBuffer">
837
            <summary>
838
            Creates, or recreates, the objects used to represent the double buffer for the presentation of the control.
839
            </summary>
840
        </member>
841
        <member name="M:OpenNETCF.Windows.Forms.ButtonBase2.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
842
            <summary>
843
            Implements the basic functionality common to button controls.
844
            </summary>
845
        </member>
846
        <member name="P:OpenNETCF.Windows.Forms.ButtonBase2.BackgroundImage">
847
            <summary>
848
            Gets or sets the background image displayed in the control.
849
            </summary>
850
            <value>A <see cref="T:System.Drawing.Image"/> that represents the image to display in the background of the control.</value>
851
        </member>
852
        <member name="P:OpenNETCF.Windows.Forms.ButtonBase2.Image">
853
            <summary>
854
            Gets or sets the image that is displayed on the control.
855
            </summary>
856
            <value>The <see cref="T:System.Drawing.Image"/> displayed on the control. The default value is a null reference (Nothing in Visual Basic).</value>
857
        </member>
858
        <member name="P:OpenNETCF.Windows.Forms.ButtonBase2.ImageAlign">
859
            <summary>
860
            Gets or sets the alignment of the image on the control.
861
            </summary>
862
            <value>One of the <see cref="T:OpenNETCF.Drawing.ContentAlignment2"/> values. The default value is MiddleCenter.</value>
863
        </member>
864
        <member name="P:OpenNETCF.Windows.Forms.ButtonBase2.ImageIndex">
865
            <summary>
866
            Gets or sets the image list index value of the image displayed on the control.
867
            </summary>
868
            <value>A zero-based index, which represents the image position in a <see cref="T:System.Windows.Forms.ImageList"/>. The default is -1.</value>
869
        </member>
870
        <member name="P:OpenNETCF.Windows.Forms.ButtonBase2.ImageList">
871
            <summary>
872
            Gets or sets the image list that contains the image displayed on the control.
873
            </summary>
874
            <value>A <see cref="T:System.Windows.Forms.ImageList"/>. The default value is a null reference (Nothing in Visual Basic).</value>
875
        </member>
876
        <member name="P:OpenNETCF.Windows.Forms.ButtonBase2.IsDisposed">
877
            <summary>
878
            Gets a value indicating whether the control has been disposed.
879
            </summary>
880
            <value><b>true</b> if the control has been disposed; otherwise, <b>false</b>.</value>
881
        </member>
882
        <member name="P:OpenNETCF.Windows.Forms.ButtonBase2.TextAlign">
883
            <summary>
884
            Gets or sets the alignment of the text on the control.
885
            </summary>
886
            <value>One of the <see cref="T:OpenNETCF.Drawing.ContentAlignment2"/> values. The default value is MiddleCenter.</value>
887
        </member>
888
        <member name="P:OpenNETCF.Windows.Forms.ButtonBase2.DoubleBuffer">
889
            <summary>
890
            Gets the object used to represent the double buffer for the presentation of the control.
891
            </summary>
892
            <value>A <see cref="T:System.Drawing.Graphics"/> object used to double buffer the presentation of the control.</value>
893
            <remarks>
894
            The DoubleBuffered property must be set to <b>true</b> for this property to return a valid object. If the DoubleBuffered property is set to <b>false</b>, the default, then this property will return a null reference (Nothing in Visual Basic).
895
            </remarks>
896
        </member>
897
        <member name="P:OpenNETCF.Windows.Forms.ButtonBase2.DoubleBuffered">
898
            <summary>
899
            Gets or sets a value indicating whether the presentation of the control is double buffered.
900
            </summary>
901
            <value>A <see cref="T:System.Boolean"/> that is set to <b>true</b> if the presentation of the control is double buffered; otherwise, <b>false</b>. The default is <b>false</b>.</value>
902
            <remarks>
903
            See the example section of the OnPaint method for the recommended pattern to ensure that double buffering is accommodated.
904
            </remarks>
905
        </member>
906
        <member name="P:OpenNETCF.Windows.Forms.ButtonBase2.IsDefault">
907
            <summary>
908
            Gets or sets a value indicating whether the button control is the default button.
909
            </summary>
910
            <value><b>true</b> if the button control is the default button; otherwise, <b>false</b>.</value>
911
        </member>
912
        <member name="T:OpenNETCF.Windows.Forms.IButtonControl">
913
            <summary>
914
            Allows a control to act like a button on a form.
915
            </summary>
916
        </member>
917
        <member name="M:OpenNETCF.Windows.Forms.IButtonControl.NotifyDefault(System.Boolean)">
918
            <summary>
919
            Notifies a control that it is the default button so that its appearance and behavior are adjusted accordingly.
920
            </summary>
921
            <param name="value"><b>true</b> if the control should behave as a default button; otherwise, <b>false</b>.</param>
922
        </member>
923
        <member name="M:OpenNETCF.Windows.Forms.IButtonControl.PerformClick">
924
            <summary>
925
            Generates a Click event for the control.
926
            </summary>
927
        </member>
928
        <member name="P:OpenNETCF.Windows.Forms.IButtonControl.DialogResult">
929
            <summary>
930
            Gets or sets the value returned to the parent form when the button is clicked.
931
            </summary>
932
            <value>One of the <see cref="T:System.Windows.Forms.DialogResult"/> values.</value>
933
        </member>
934
        <member name="M:OpenNETCF.Windows.Forms.Button2.#ctor">
935
            <summary>
936
            Initializes a new instance of the Button2 class.
937
            </summary>
938
        </member>
939
        <member name="M:OpenNETCF.Windows.Forms.Button2.GetLocationFromContentAlignment(OpenNETCF.Drawing.ContentAlignment2,System.Drawing.SizeF,System.Drawing.Rectangle)">
940
            <summary>
941
            Determines the location at which the content should be displayed, on the control, based on the indicated alignment value.
942
            </summary>
943
            <param name="alignment">The <see cref="T:OpenNETCF.Drawing.ContentAlignment2"/> that represents how the content should be positioned on the control.</param>
944
            <param name="contentSize">The <see cref="T:System.Drawing.SizeF"/> containing the width and height of the content to display on the control.</param>
945
            <param name="clipRect">The <see cref="T:System.Drawing.Rectangle"/> that represents the allotted area in which the content may be displayed.</param>
946
            <returns>A <see cref="T:System.Drawing.Point"/> containing the x and y coordinates at which the content should be displayed.</returns>
947
        </member>
948
        <member name="M:OpenNETCF.Windows.Forms.Button2.NotifyDefault(System.Boolean)">
949
            <summary>
950
            Notifies the button whether it is the default button so that it can adjust its appearance accordingly.
951
            </summary>
952
            <param name="value"><b>true</b> if the button is to have the appearance of the default button; otherwise, <b>false</b>.</param>
953
        </member>
954
        <member name="M:OpenNETCF.Windows.Forms.Button2.OnClick(System.EventArgs)">
955
            <summary>
956
            Raises the Click event.
957
            </summary>
958
            <param name="e">An EventArgs that contains the event data.</param>
959
        </member>
960
        <member name="M:OpenNETCF.Windows.Forms.Button2.OnDoubleClick(System.EventArgs)">
961
            <summary>
962
            Raises the DoubleClick event.
963
            </summary>
964
            <param name="e">An EventArgs that contains the event data.</param>
965
        </member>
966
        <member name="M:OpenNETCF.Windows.Forms.Button2.OnEnabledChanged(System.EventArgs)">
967
            <summary>
968
            Raises the EnabledChanged event.
969
            </summary>
970
            <param name="e">An EventArgs that contains the event data.</param>
971
        </member>
972
        <member name="M:OpenNETCF.Windows.Forms.Button2.OnGotFocus(System.EventArgs)">
973
            <summary>
974
            Raises the GotFocus event.
975
            </summary>
976
            <param name="e">An EventArgs that contains the event data.</param>
977
        </member>
978
        <member name="M:OpenNETCF.Windows.Forms.Button2.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
979
            <summary>
980
            Raises the KeyPress event.
981
            </summary>
982
            <param name="e">A KeyPressEventArgs that contains the event data.</param>
983
        </member>
984
        <member name="M:OpenNETCF.Windows.Forms.Button2.OnLostFocus(System.EventArgs)">
985
            <summary>
986
            Raises the LostFocus event.
987
            </summary>
988
            <param name="e">An EventArgs that contains the event data.</param>
989
        </member>
990
        <member name="M:OpenNETCF.Windows.Forms.Button2.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
991
            <summary>
992
            Raises the MouseDown event.
993
            </summary>
994
            <param name="e">A MouseEventArgs that contains the event data.</param>
995
        </member>
996
        <member name="M:OpenNETCF.Windows.Forms.Button2.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
997
            <summary>
998
            Raises the MouseMove event.
999
            </summary>
1000
            <param name="e">A MouseEventArgs that contains the event data.</param>
1001
        </member>
1002
        <member name="M:OpenNETCF.Windows.Forms.Button2.OnPaint(System.Windows.Forms.PaintEventArgs)">
1003
            <summary>
1004
            Raises the Paint event.
1005
            </summary>
1006
            <param name="e">A PaintEventArgs that contains the event data.</param>
1007
            <remarks>
1008
            <b>Notes to Inheritors:</b> See the example section, in the <see cref="T:OpenNETCF.Windows.Forms.ButtonBase2"/> control documentation, for the recommended pattern to ensure that double buffering and structured paint sequencing are both accommodated.
1009
            </remarks>
1010
        </member>
1011
        <member name="M:OpenNETCF.Windows.Forms.Button2.OnTextChanged(System.EventArgs)">
1012
            <summary>
1013
            Raises the TextChanged event.
1014
            </summary>
1015
            <param name="e">An EventArgs that contains the event data.</param>
1016
        </member>
1017
        <member name="M:OpenNETCF.Windows.Forms.Button2.PerformClick">
1018
            <summary>
1019
            Generates a Click event for a button.
1020
            </summary>
1021
        </member>
1022
        <member name="M:OpenNETCF.Windows.Forms.Button2.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
1023
            <summary>
1024
            Represents a button control.
1025
            </summary>
1026
        </member>
1027
        <member name="P:OpenNETCF.Windows.Forms.Button2.ShowFocusBorder">
1028
            <summary>
1029
            Determines if the control will show a border when it has focus
1030
            </summary>
1031
        </member>
1032
        <member name="P:OpenNETCF.Windows.Forms.Button2.ActiveBackColor">
1033
            <summary>
1034
            Gets or sets the background color for the control in an active state.
1035
            </summary>
1036
            <value>A <see cref="T:System.Drawing.Color"/> that represents the active background color of the control. The default is SystemColors.ControlText.</value>
1037
        </member>
1038
        <member name="P:OpenNETCF.Windows.Forms.Button2.ActiveBackgroundImage">
1039
            <summary>
1040
            Gets or sets the background image displayed for the control in an active state.
1041
            </summary>
1042
            <value>A <see cref="T:System.Drawing.Image"/> that represents the active image to display in the background of the control.</value>
1043
        </member>
1044
        <member name="P:OpenNETCF.Windows.Forms.Button2.ActiveBorderColor">
1045
            <summary>
1046
            Gets or sets the color of the border for the control in an active state.
1047
            </summary>
1048
            <value>A <see cref="T:System.Drawing.Color"/> that represents the border color of the control. The default is Color.Black.</value>
1049
            <remarks>
1050
            This property is only valid when the BorderStyle property is set to FixedSingle.
1051
            </remarks>
1052
        </member>
1053
        <member name="P:OpenNETCF.Windows.Forms.Button2.ActiveForeColor">
1054
            <summary>
1055
            Gets or sets the foreground color for the control in an active state.
1056
            </summary>
1057
            <value>A <see cref="T:System.Drawing.Color"/> that represents the active foreground color of the control. The default is SystemColors.Control.</value>
1058
        </member>
1059
        <member name="P:OpenNETCF.Windows.Forms.Button2.BorderColor">
1060
            <summary>
1061
            Gets or sets the color of the border for the control in an enabled state.
1062
            </summary>
1063
            <value>A <see cref="T:System.Drawing.Color"/> that represents the border color of the control. The default is Color.Black.</value>
1064
            <remarks>
1065
            This property is only valid when the BorderStyle property is set to FixedSingle.
1066
            </remarks>
1067
        </member>
1068
        <member name="P:OpenNETCF.Windows.Forms.Button2.BorderStyle">
1069
            <summary>
1070
            Gets or sets the style of the border for the control.
1071
            </summary>
1072
            <value>One of the <see cref="T:System.Windows.Forms.BorderStyle"/> values. The default is FixedSingle.</value>
1073
            <remarks>
1074
            It is recommended that applications targeting the broad Windows platform use the Fixed3D value, and applications targeting either the Pocket PC or Smartphone platform use the default, FixedSingle.
1075
            </remarks>
1076
        </member>
1077
        <member name="P:OpenNETCF.Windows.Forms.Button2.DialogResult">
1078
            <summary>
1079
            Gets or sets a value that is returned to the parent form when the button is activated.
1080
            </summary>
1081
            <value>One of the <see cref="T:System.Windows.Forms.DialogResult"/> values. The default value is None.</value>
1082
        </member>
1083
        <member name="P:OpenNETCF.Windows.Forms.Button2.DisabledBackColor">
1084
            <summary>
1085
            Gets or sets the background color for the control in a disabled state.
1086
            </summary>
1087
            <value>A <see cref="T:System.Drawing.Color"/> that represents the disabled background color of the control. The default is SystemColors.Control.</value>
1088
        </member>
1089
        <member name="P:OpenNETCF.Windows.Forms.Button2.DisabledBackgroundImage">
1090
            <summary>
1091
            Gets or sets the background image displayed for the control in a disabled state.
1092
            </summary>
1093
            <value>A <see cref="T:System.Drawing.Image"/> that represents the disabled image to display in the background of the control.</value>
1094
        </member>
1095
        <member name="P:OpenNETCF.Windows.Forms.Button2.DisabledBorderColor">
1096
            <summary>
1097
            Gets or sets the color of the border for the control in a disabled state.
1098
            </summary>
1099
            <value>A <see cref="T:System.Drawing.Color"/> that represents the disabled border color of the control.</value>
1100
            <remarks>
1101
            This property is only valid when the BorderStyle property is set to FixedSingle.
1102
            </remarks>
1103
        </member>
1104
        <member name="P:OpenNETCF.Windows.Forms.Button2.DisabledForeColor">
1105
            <summary>
1106
            Gets or sets the foreground color for the control in a disabled state.
1107
            </summary>
1108
            <value>A <see cref="T:System.Drawing.Color"/> that represents the disabled foreground color of the control.</value>
1109
        </member>
1110
        <member name="P:OpenNETCF.Windows.Forms.Button2.TransparentImage">
1111
            <summary>
1112
            Gets or sets a value indicating whether the foreground image for the control contains transparency.
1113
            </summary>
1114
            <value>A <see cref="T:System.Boolean"/> that is set to <b>true</b> if the foreground image of the control contains transparency; otherwise, <b>false</b>. The default is <b>true</b>.</value>
1115
            <remarks>
1116
            The color of the top-left pixel in the foreground image is used as the transparency key.
1117
            </remarks>
1118
        </member>
1119
        <member name="T:OpenNETCF.Windows.Forms.CharacterCasing">
1120
            <summary>
1121
            Specifies the case of characters in a <see cref="T:OpenNETCF.Windows.Forms.TextBox2"/> control.
1122
            </summary>
1123
        </member>
1124
        <member name="F:OpenNETCF.Windows.Forms.CharacterCasing.Normal">
1125
            <summary>
1126
            The case of characters is left unchanged.
1127
            </summary>
1128
        </member>
1129
        <member name="F:OpenNETCF.Windows.Forms.CharacterCasing.Upper">
1130
            <summary>
1131
            Converts all characters to uppercase.
1132
            </summary>
1133
        </member>
1134
        <member name="F:OpenNETCF.Windows.Forms.CharacterCasing.Lower">
1135
            <summary>
1136
            Converts all characters to lowercase.
1137
            </summary>
1138
        </member>
1139
        <member name="T:OpenNETCF.Windows.Forms.CheckBox2">
1140
            <summary>
1141
            Represents an enhanced CheckBox with similar functionality that's available in the .NET Framework.
1142
            </summary>
1143
        </member>
1144
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.#ctor">
1145
            <summary>
1146
            Initializes a new instance of the CheckBox2 class
1147
            </summary>
1148
        </member>
1149
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.OnCheckStateChanged(System.EventArgs)">
1150
            <summary>
1151
            Raises the System.Windows.Forms.CheckBox.CheckStateChanged event.
1152
            </summary>
1153
            <param name="e">A System.EventArgs that contains the event data.</param>
1154
        </member>
1155
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.ScaleControl(System.Drawing.SizeF,System.Windows.Forms.BoundsSpecified)">
1156
            <summary>
1157
            Scales a controls location, size, padding and margin.
1158
            </summary>
1159
            <param name="factor"></param>
1160
            <param name="specified"></param>
1161
        </member>
1162
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.OnPaint(System.Windows.Forms.PaintEventArgs)">
1163
            <summary>
1164
            Raises the PaintEvent.
1165
            </summary>
1166
            <param name="e"></param>
1167
        </member>
1168
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.OnGotFocus(System.EventArgs)">
1169
            <summary>
1170
            Raises the GotFocus event
1171
            </summary>
1172
            <param name="e"></param>
1173
        </member>
1174
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.OnLostFocus(System.EventArgs)">
1175
            <summary>
1176
            Raises the LostFocus event
1177
            </summary>
1178
            <param name="e"></param>
1179
        </member>
1180
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.OnParentChanged(System.EventArgs)">
1181
            <summary>
1182
            Raises the ParentChanged event
1183
            </summary>
1184
            <param name="e"></param>
1185
        </member>
1186
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.OnResize(System.EventArgs)">
1187
            <summary>
1188
            Raises the Resize event
1189
            </summary>
1190
            <param name="e"></param>
1191
        </member>
1192
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
1193
            <summary>
1194
            Raises the MouseUp event
1195
            </summary>
1196
            <param name="e"></param>
1197
        </member>
1198
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
1199
            <summary>
1200
            Raises the MouseDown event
1201
            </summary>
1202
            <param name="e"></param>
1203
        </member>
1204
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.OnTextChanged(System.EventArgs)">
1205
            <summary>
1206
            Raises the TextChanged event
1207
            </summary>
1208
            <param name="e"></param>
1209
        </member>
1210
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.OnEnabledChanged(System.EventArgs)">
1211
            <summary>
1212
            Raises the EnabledChanged event
1213
            </summary>
1214
            <param name="e"></param>
1215
        </member>
1216
        <member name="F:OpenNETCF.Windows.Forms.CheckBox2.components">
1217
            <summary>
1218
            Required designer variable.
1219
            </summary>
1220
        </member>
1221
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.Dispose(System.Boolean)">
1222
            <summary>
1223
            Clean up any resources being used.
1224
            </summary>
1225
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
1226
        </member>
1227
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.InitializeComponent">
1228
            <summary>
1229
            Required method for Designer support - do not modify
1230
            the contents of this method with the code editor.
1231
            </summary>
1232
        </member>
1233
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
1234
            <summary>
1235
            Raises the OnKeyPress event
1236
            </summary>
1237
            <param name="e"></param>
1238
        </member>
1239
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
1240
            <summary>
1241
            Raises the OnKeyUp event.
1242
            </summary>
1243
            <param name="e"></param>
1244
        </member>
1245
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.DrawFocusRectangle(System.Drawing.Rectangle,System.Drawing.Rectangle)">
1246
            <summary>
1247
            New for v2.1.  Draws a focus rectangle similar to WM5 functionality.
1248
            </summary>
1249
            <param name="checkRect"></param>
1250
            <param name="textRect"></param>
1251
            <version>2.1</version>
1252
        </member>
1253
        <member name="M:OpenNETCF.Windows.Forms.CheckBox2.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
1254
            <summary>
1255
            Represents an enhanced CheckBox with similar functionality that's available in the .NET Framework.
1256
            </summary>
1257
        </member>
1258
        <member name="E:OpenNETCF.Windows.Forms.CheckBox2.CheckStateChanged">
1259
            <summary>
1260
            Occurs when the value of the CheckBox.CheckState property changes.
1261
            </summary>
1262
        </member>
1263
        <member name="P:OpenNETCF.Windows.Forms.CheckBox2.CheckAlign">
1264
            <summary>
1265
            Gets or sets the alignment of the checkBox.
1266
            </summary>
1267
            <exception cref="T:System.NotSupportedException">CheckBox2 does not support ContentAlignment.TopCenter.</exception>
1268
        </member>
1269
        <member name="P:OpenNETCF.Windows.Forms.CheckBox2.CheckState">
1270
            <summary>
1271
            Gets or sets the state of the check box.
1272
            </summary>
1273
        </member>
1274
        <member name="P:OpenNETCF.Windows.Forms.CheckBox2.BorderStyle">
1275
            <summary>
1276
            Gets or sets the border style color of the control.
1277
            </summary>
1278
        </member>
1279
        <member name="P:OpenNETCF.Windows.Forms.CheckBox2.Text">
1280
            <summary>
1281
            Gets or sets the text associated with this control.
1282
            </summary>
1283
        </member>
1284
        <member name="P:OpenNETCF.Windows.Forms.CheckBox2.Checked">
1285
            <summary>
1286
            Gets or set a value indicating whether the check box is in the checked state.
1287
            </summary>
1288
        </member>
1289
        <member name="P:OpenNETCF.Windows.Forms.CheckBox2.AutoCheck">
1290
            <summary>
1291
             Gets or set a value indicating whether the Checked or CheckState values and the check box's appearance are automatically changed when the check box is clicked.
1292
            </summary>
1293
        </member>
1294
        <member name="P:OpenNETCF.Windows.Forms.CheckBox2.ForeColor">
1295
            <summary>
1296
            Gets or sets the color of the text of the control.
1297
            </summary>
1298
        </member>
1299
        <member name="P:OpenNETCF.Windows.Forms.CheckBox2.CheckBoxColor">
1300
            <summary>
1301
            Gets or sets the color of the checkbox itself in the control.
1302
            </summary>
1303
        </member>
1304
        <member name="P:OpenNETCF.Windows.Forms.CheckBox2.BackColor">
1305
            <summary>
1306
            Gets or sets the background color for the control.
1307
            </summary>
1308
        </member>
1309
        <member name="P:OpenNETCF.Windows.Forms.CheckBox2.DrawFocusedRectangle">
1310
            <summary>
1311
            New in v2.1. Gets or Sets the value indicating if the focused rectangle should be drawn.
1312
            </summary>
1313
            <version>2.1</version>
1314
        </member>
1315
        <member name="T:OpenNETCF.Windows.Forms.Clipboard2">
1316
            <summary>
1317
            Provides methods to place data on and retrieve data from the system clipboard.
1318
            </summary>
1319
            <remarks>For a list of predefined formats to use with the Clipboard class, see the <see cref="T:System.Windows.Forms.DataFormats"/> class.
1320
            <para>Call <see cref="M:OpenNETCF.Windows.Forms.Clipboard2.SetDataObject(System.Object)"/> to put data on the clipboard.</para>
1321
            <para>Place data on the clipboard in multiple formats to maximize the possibility that a target application, whose format requirements you might not know, can successfully retrieve the data.</para>
1322
            <para>Call <see cref="M:OpenNETCF.Windows.Forms.Clipboard2.GetDataObject"/> to retrieve data from the clipboard.
1323
            The data is returned as an object that implements the <see cref="T:System.Windows.Forms.IDataObject"/> interface.
1324
            Use the methods specified by <see cref="T:System.Windows.Forms.IDataObject"/> and fields in <see cref="T:System.Windows.Forms.DataFormats"/> to extract the data from the object.
1325
            If you do not know the format of the data you retrieved, call the <see cref="M:System.Windows.Forms.IDataObject.GetFormats(System.Boolean)"/> method of the <see cref="T:System.Windows.Forms.IDataObject"/> interface to get a list of all formats that data is stored in.
1326
            Then call the <see cref="M:System.Windows.Forms.IDataObject.GetData(System.String,System.Boolean)"/> method of the <see cref="T:System.Windows.Forms.IDataObject"/> interface, and specify a format that your application can use.</para>
1327
            <para>All Windows applications share the system clipboard, so the contents are subject to change when you switch to another application.</para>.
1328
            Supports only Unicode text and Image (Bitmap) formats.</remarks>
1329
        </member>
1330
        <member name="M:OpenNETCF.Windows.Forms.Clipboard2.Clear">
1331
            <summary>
1332
            Clears the contents of the Clipboard.
1333
            </summary>
1334
        </member>
1335
        <member name="M:OpenNETCF.Windows.Forms.Clipboard2.ContainsData(System.String)">
1336
            <summary>
1337
            Determines if clipboard contains data in the specified format
1338
            </summary>
1339
            <param name="format">A clipboard format, see <see cref="T:System.Windows.Forms.DataFormats"/> for possible values.</param>
1340
            <returns>True if clipboard contains specified format; otherwise False.</returns>
1341
        </member>
1342
        <member name="M:OpenNETCF.Windows.Forms.Clipboard2.ContainsImage">
1343
            <summary>
1344
            Determines if clipboard contains an Image.
1345
            </summary>
1346
            <returns>True if clipboard contains Image; otherwise False.</returns>
1347
        </member>
1348
        <member name="M:OpenNETCF.Windows.Forms.Clipboard2.ContainsText">
1349
            <summary>
1350
            Determines if clipboard contains Text.
1351
            </summary>
1352
            <returns>True if clipboard contains Text; otherwise False.</returns>
1353
        </member>
1354
        <member name="M:OpenNETCF.Windows.Forms.Clipboard2.GetData(System.String)">
1355
            <summary>
1356
            Retrieves data from the Clipboard in the specified format.
1357
            </summary>
1358
            <param name="format">Clipboard format, see <see cref="T:System.Windows.Forms.DataFormats"/> for possible values.</param>
1359
            <returns>Returns the specified data or null if not present.</returns>
1360
        </member>
1361
        <member name="M:OpenNETCF.Windows.Forms.Clipboard2.SetImage(System.Drawing.Image)">
1362
            <summary>
1363
            Adds an <see cref="T:System.Drawing.Image"/> to the Clipboard in the <see cref="F:System.Windows.Forms.DataFormats.Bitmap"/> format.
1364
            </summary>
1365
            <param name="image">An Image that must be placed on clipboard.</param>
1366
        </member>
1367
        <member name="M:OpenNETCF.Windows.Forms.Clipboard2.GetImage">
1368
            <summary>
1369
            Retrieves an image from the Clipboard.
1370
            </summary>
1371
            <returns>An Image from clipboard or null if doesn't contain Image.</returns>
1372
        </member>
1373
        <member name="M:OpenNETCF.Windows.Forms.Clipboard2.SetText(System.String)">
1374
            <summary>
1375
            Places specified text onto the clipboard.
1376
            </summary>
1377
            <param name="text">Text to be added to the clipboard</param>
1378
        </member>
1379
        <member name="M:OpenNETCF.Windows.Forms.Clipboard2.GetText">
1380
            <summary>
1381
            Retrieves data from the clipboard as text.
1382
            </summary>
1383
            <returns>Text representation of clipboard contents</returns>
1384
        </member>
1385
        <member name="M:OpenNETCF.Windows.Forms.Clipboard2.SetDataObject(System.Object)">
1386
            <summary>
1387
            Places nonpersistent data on the system clipboard.
1388
            </summary>
1389
            <param name="data">The data to place on the clipboard.</param>
1390
            <exception cref="T:System.ArgumentNullException">The value of data is null.</exception>
1391
        </member>
1392
        <member name="M:OpenNETCF.Windows.Forms.Clipboard2.GetDataObject">
1393
            <summary>
1394
            Retrieves the data that is currently on the system clipboard.
1395
            </summary>
1396
            <returns>An <see cref="T:System.Windows.Forms.IDataObject"/> that represents the data currently on the clipboard, or null if there is no data on the clipboard.</returns>
1397
        </member>
1398
        <member name="T:OpenNETCF.Windows.Forms.DataFormats2">
1399
            <summary>
1400
            Provides static, predefined <see cref="T:System.Windows.Forms.Clipboard"/> format names.
1401
            Use them to identify the format of data that you store in an <see cref="T:System.Windows.Forms.IDataObject"/>.
1402
            </summary>
1403
        </member>
1404
        <member name="F:OpenNETCF.Windows.Forms.DataFormats2.Bitmap">
1405
            <summary>
1406
            Specifies a Windows bitmap format.
1407
            </summary>
1408
        </member>
1409
        <member name="F:OpenNETCF.Windows.Forms.DataFormats2.Text">
1410
            <summary>
1411
            Specifies the standard ANSI text format.
1412
            </summary>
1413
        </member>
1414
        <member name="F:OpenNETCF.Windows.Forms.DataFormats2.UnicodeText">
1415
            <summary>
1416
            Specifies the standard Windows Unicode text format.
1417
            </summary>
1418
        </member>
1419
        <member name="F:OpenNETCF.Windows.Forms.DataFormats2.WaveAudio">
1420
            <summary>
1421
            Specifies the wave audio format, which Windows Forms does not directly use.
1422
            </summary>
1423
        </member>
1424
        <member name="M:OpenNETCF.Windows.Forms.DataFormats2.GetFormat(System.Int32)">
1425
            <summary>
1426
            Returns a <see cref="T:OpenNETCF.Windows.Forms.DataFormats2.Format"/> with the Windows Clipboard numeric ID and name for the specified ID.
1427
            </summary>
1428
            <param name="id">The format ID.</param>
1429
            <returns>A <see cref="T:OpenNETCF.Windows.Forms.DataFormats2.Format"/> that has the Windows Clipboard numeric ID and the name of the format.</returns>
1430
        </member>
1431
        <member name="M:OpenNETCF.Windows.Forms.DataFormats2.GetFormat(System.String)">
1432
            <summary>
1433
            Returns a <see cref="T:OpenNETCF.Windows.Forms.DataFormats2.Format"/> with the Windows Clipboard numeric ID and name for the specified format.
1434
            </summary>
1435
            <param name="format">The format name.</param>
1436
            <returns>A <see cref="T:OpenNETCF.Windows.Forms.DataFormats2.Format"/> that has the Windows Clipboard numeric ID and the name of the format.</returns>
1437
        </member>
1438
        <member name="T:OpenNETCF.Windows.Forms.DataFormats2.Format">
1439
            <summary>
1440
            Represents a clipboard format type.
1441
            </summary>
1442
        </member>
1443
        <member name="M:OpenNETCF.Windows.Forms.DataFormats2.Format.#ctor(System.String,System.Int32)">
1444
            <summary>
1445
            Create a new instance of Format.
1446
            </summary>
1447
            <param name="name">Name of the format.</param>
1448
            <param name="id">ID number of the format.</param>
1449
        </member>
1450
        <member name="P:OpenNETCF.Windows.Forms.DataFormats2.Format.Name">
1451
            <summary>
1452
            Gets the name of this format.
1453
            </summary>
1454
        </member>
1455
        <member name="P:OpenNETCF.Windows.Forms.DataFormats2.Format.Id">
1456
            <summary>
1457
            Gets the ID number for this format.
1458
            </summary>
1459
        </member>
1460
        <member name="T:OpenNETCF.Windows.Forms.ColorDialog">
1461
            <summary>
1462
            Represents a common dialog box that displays available colors along with controls that allow the user to define custom colors.
1463
            </summary>
1464
            <remarks>The method <see cref="M:OpenNETCF.Windows.Forms.ColorDialog.ShowDialog"/> must be invoked to create this specific common dialog box.
1465
            Use <see cref="P:OpenNETCF.Windows.Forms.ColorDialog.Color"/> to retrieve the color selected by the user.
1466
            <para>When you create an instance of ColorDialog, some of the read/write properties are set to initial values.
1467
            For a list of these values, see the ColorDialog constructor.</para></remarks>
1468
            <platform><frameworks><compact>true</compact></frameworks></platform>
1469
        </member>
1470
        <member name="M:OpenNETCF.Windows.Forms.ColorDialog.#ctor">
1471
             <summary>
1472
             Initializes a new instance of the <b>ColorDialog</b> class.
1473
             </summary>
1474
             <remarks>When you create an instance of ColorDialog, the following read/write properties are set to initial values.
1475
             <list type="table"><listheader><term>Property</term><term>Initial Value</term></listheader>
1476
             <item><term>AllowFullOpen</term><term>true</term></item>
1477
             <item><term>Color</term><term>Color.Black</term></item>
1478
            	<item><term>CustomColors</term><term>A null reference (Nothing in Visual Basic)</term></item>
1479
             <item><term>FullOpen</term><term>false</term></item></list>
1480
 
1481
             <para>You can change the value for any of these properties through a separate call to the property.</para></remarks>
1482
        </member>
1483
        <member name="M:OpenNETCF.Windows.Forms.ColorDialog.Dispose">
1484
            <summary>
1485
            Free up resources used by the <see cref="T:OpenNETCF.Windows.Forms.ColorDialog"/>
1486
            </summary>
1487
        </member>
1488
        <member name="M:OpenNETCF.Windows.Forms.ColorDialog.ShowDialog(OpenNETCF.Windows.Forms.IWin32Window)">
1489
            <summary>
1490
            Runs a common dialog box with the specified owner.
1491
            </summary>
1492
            <param name="owner">Any object that implements <see cref="T:OpenNETCF.Windows.Forms.IWin32Window"/> that represents the top-level window that will own the modal dialog box.</param>
1493
            <returns><see cref="T:System.Windows.Forms.DialogResult">DialogResult.OK</see> if the user clicks <b>OK</b> in the dialog box; otherwise, <see cref="T:System.Windows.Forms.DialogResult">DialogResult.Cancel</see>.</returns>
1494
            <remarks>This version of the ShowDialog method allows you to specify a specific form or control that will own the dialog box that is shown.</remarks>
1495
        </member>
1496
        <member name="M:OpenNETCF.Windows.Forms.ColorDialog.ShowDialog">
1497
            <summary>
1498
            Runs a common dialog box.
1499
            </summary>
1500
            <returns>DialogResult.OK if the user clicks <b>OK</b> in the dialog box; otherwise, DialogResult.Cancel.</returns>
1501
            <example>The following example uses the ColorDialog and illustrates creating and showing a dialog box.
1502
            This example assumes that the method is called from within an existing form, that has a TextBox and Button placed on it.
1503
            <para>Note:   This example shows how to use one of the overloaded versions of ShowDialog.
1504
            For other examples that might be available, see the individual overload topics.</para>
1505
            <code>[VB]
1506
            Protected Sub button1_Click(sender As Object, e As System.EventArgs)
1507
            	Dim MyDialog As New ColorDialog()
1508
            	' Keeps the user from selecting a custom color.
1509
            	MyDialog.AllowFullOpen = False
1510
            	' Sets the initial color select to the current text color,
1511
            	MyDialog.Color = textBox1.ForeColor
1512
            	' Update the text box color if the user clicks OK
1513
            	If (MyDialog.ShowDialog() = DialogResult.OK) Then
1514
            		textBox1.ForeColor =  MyDialog.Color
1515
            End Sub</code>
1516
            <code>[C#]
1517
            protected void button1_Click(object sender, System.EventArgs e)
1518
            {
1519
            	ColorDialog MyDialog = new ColorDialog();
1520
            	// Keeps the user from selecting a custom color.
1521
            	MyDialog.AllowFullOpen = false ;
1522
            	// Sets the initial color select to the current text color.
1523
            	MyDialog.Color = textBox1.ForeColor ;
1524
            	// Update the text box color if the user clicks OK
1525
            	if (MyDialog.ShowDialog() == DialogResult.OK)
1526
            		textBox1.ForeColor =  MyDialog.Color;
1527
            }
1528
            </code></example>
1529
        </member>
1530
        <member name="M:OpenNETCF.Windows.Forms.ColorDialog.RunDialog(System.IntPtr)">
1531
            <summary>
1532
            Specifies a common dialog box.
1533
            </summary>
1534
            <param name="hwndOwner">A value that represents the window handle of the owner window for the common dialog box.</param>
1535
            <returns>true if the dialog box was successfully run; otherwise, false.</returns>
1536
            <remarks>This method is invoked when the user of a common dialog box calls <see cref="M:OpenNETCF.Windows.Forms.ColorDialog.ShowDialog"/>.</remarks>
1537
        </member>
1538
        <member name="P:OpenNETCF.Windows.Forms.ColorDialog.AllowFullOpen">
1539
             <summary>
1540
             Gets or sets a value indicating whether the user can use the dialog box to define custom colors.
1541
             </summary>
1542
             <value>true if the user can define custom colors; otherwise, false. The default is true</value>
1543
             <remarks>When set to false, the associated button in the dialog box is disabled and the user cannot access the custom colors control in the dialog box.
1544
             Windows CE supports the button, Pocket PC does not and this property has no effect.</remarks>
1545
             <example>[Visual Basic, C#] The following example illustrates the creation of new ColorDialog.
1546
             This example assumes that the method is called from within an existing form, that has a TextBox and Button placed on it.
1547
             <code>[Visual Basic]
1548
             Protected Sub button1_Click(sender As Object, e As System.EventArgs)
1549
            			Dim MyDialog As New ColorDialog()
1550
            			' Keeps the user from selecting a custom color.
1551
            			MyDialog.AllowFullOpen = False
1552
            			' Sets the initial color select to the current text color,
1553
            			MyDialog.Color = textBox1.ForeColor
1554
 
1555
            			' Update the text box color if the user clicks OK
1556
            			If (MyDialog.ShowDialog() = DialogResult.OK) Then
1557
            					textBox1.ForeColor =  MyDialog.Color
1558
            			End If
1559
 
1560
            	End Sub 'button1_Click</code>
1561
            	<code>[C#]
1562
            protected void button1_Click(object sender, System.EventArgs e)
1563
            {
1564
            		ColorDialog MyDialog = new ColorDialog();
1565
            		// Keeps the user from selecting a custom color.
1566
            		MyDialog.AllowFullOpen = false ;
1567
            		// Sets the initial color select to the current text color.
1568
            		MyDialog.Color = textBox1.ForeColor ;
1569
 
1570
            		// Update the text box color if the user clicks OK
1571
            		if (MyDialog.ShowDialog() == DialogResult.OK)
1572
            			textBox1.ForeColor =  MyDialog.Color;
1573
            }</code>
1574
            </example>
1575
        </member>
1576
        <member name="P:OpenNETCF.Windows.Forms.ColorDialog.AnyColor">
1577
            <summary>
1578
            Gets or sets a value indicating whether the dialog box displays all available colors in the set of basic colors.
1579
            </summary>
1580
            <value>true if the dialog box displays all available colors in the set of basic colors; otherwise, false.
1581
            The default value is false.</value>
1582
        </member>
1583
        <member name="P:OpenNETCF.Windows.Forms.ColorDialog.Color">
1584
             <summary>
1585
             Gets or sets the color selected by the user.
1586
             </summary>
1587
             <value>The color selected by the user.
1588
             If a color is not selected, the default value is black.</value>
1589
             <remarks>The color selected by the user in the dialog box at run time, as defined in <see cref="T:System.Drawing.Color"/> structure</remarks>
1590
             <example>[Visual Basic, C#] The following example illustrates the creation of new ColorDialog.
1591
             This example assumes that the method is called from within an existing form, that has a TextBox and Button placed on it.
1592
             <code>[Visual Basic]
1593
             Protected Sub button1_Click(sender As Object, e As System.EventArgs)
1594
            			Dim MyDialog As New ColorDialog()
1595
            			' Keeps the user from selecting a custom color.
1596
            			MyDialog.AllowFullOpen = False
1597
            			' Sets the initial color select to the current text color,
1598
            			MyDialog.Color = textBox1.ForeColor
1599
 
1600
            			' Update the text box color if the user clicks OK
1601
            			If (MyDialog.ShowDialog() = DialogResult.OK) Then
1602
            					textBox1.ForeColor =  MyDialog.Color
1603
            			End If
1604
 
1605
            	End Sub 'button1_Click</code>
1606
            	<code>[C#]
1607
            protected void button1_Click(object sender, System.EventArgs e)
1608
            {
1609
            		ColorDialog MyDialog = new ColorDialog();
1610
            		// Keeps the user from selecting a custom color.
1611
            		MyDialog.AllowFullOpen = false ;
1612
            		// Sets the initial color select to the current text color.
1613
            		MyDialog.Color = textBox1.ForeColor ;
1614
 
1615
            		// Update the text box color if the user clicks OK
1616
            		if (MyDialog.ShowDialog() == DialogResult.OK)
1617
            			textBox1.ForeColor =  MyDialog.Color;
1618
            }</code>
1619
            </example>
1620
        </member>
1621
        <member name="P:OpenNETCF.Windows.Forms.ColorDialog.CustomColors">
1622
            <summary>
1623
            Gets or sets the set of custom colors shown in the dialog box.
1624
            </summary>
1625
            <value>A set of custom colors shown by the dialog box.
1626
            The default value is a null reference (Nothing in Visual Basic).</value>
1627
            <remarks>Users can create their own set of custom colors.
1628
            These colors are contained in an Int32 composed of the ARGB component (alpha, red, green, and blue) values necessary to create the color.
1629
            For more information on the structure of this data, see <see cref="P:OpenNETCF.Windows.Forms.ColorDialog.Color"/>.
1630
            Custom colors can only be defined if <see cref="P:OpenNETCF.Windows.Forms.ColorDialog.AllowFullOpen"/> is set to true (Not supported on Pocket PC).</remarks>
1631
            <example>[Visual Basic, C#] The following example shows how to add an array of type Int32 representing custom colors to CustomColors.
1632
            This example assumes that the code is run from within a Form.
1633
            <code>[Visual Basic]
1634
            Dim MyDialog = New ColorDialog()
1635
            'Allows the user to select or edit a custom color.
1636
            MyDialog.AllowFullOpen = True
1637
            'Assigns an array of custom colors to the CustomColors property.
1638
            MyDialog.CustomColors = New Integer() {6916092, 15195440, 16107657, 1836924, _
1639
            	3758726, 12566463, 7526079, 7405793, 6945974, 241502, 2296476, 5130294, _
1640
            	3102017, 7324121, 14993507, 11730944}
1641
            'Sets the initial color select to the current text color,
1642
            'so that if the user cancels out, the original color is restored.
1643
            MyDialog.Color = Me.BackColor
1644
            MyDialog.ShowDialog()
1645
            Me.BackColor = MyDialog.Color</code>
1646
            <code>[C#]
1647
            System.Windows.Forms.ColorDialog MyDialog = new ColorDialog();
1648
            // Allows the user to select or edit a custom color.
1649
            MyDialog.AllowFullOpen = true ;
1650
            // Assigns an array of custom colors to the CustomColors property
1651
            MyDialog.CustomColors = new int[] {6916092, 15195440, 16107657, 1836924,
1652
            	3758726, 12566463, 7526079, 7405793, 6945974, 241502, 2296476, 5130294,
1653
            	3102017, 7324121, 14993507, 11730944,};
1654
            // Sets the initial color select to the current text color,
1655
            // so that if the user cancels out, the original color is restored.
1656
            MyDialog.Color = this.BackColor;
1657
            MyDialog.ShowDialog();
1658
            this.BackColor =  MyDialog.Color;</code>
1659
            </example>
1660
        </member>
1661
        <member name="P:OpenNETCF.Windows.Forms.ColorDialog.FullOpen">
1662
            <summary>
1663
            Gets or sets a value indicating whether the controls used to create custom colors are visible when the dialog box is opened.
1664
            </summary>
1665
            <value>true if the custom color controls are available when the dialog box is opened; otherwise, false.
1666
            The default value is false.</value>
1667
            <remarks>By default, the custom color controls are not visible when the dialog box is first opened.
1668
            You must click the Custom Colors button to display them.
1669
            <para>Note:   If <see cref="P:OpenNETCF.Windows.Forms.ColorDialog.AllowFullOpen"/> is false, then <b>FullOpen</b> has no effect.</para></remarks>
1670
        </member>
1671
        <member name="P:OpenNETCF.Windows.Forms.ColorDialog.SolidColorOnly">
1672
            <summary>
1673
            Gets or sets a value indicating whether the dialog box will restrict users to selecting solid colors only.
1674
            </summary>
1675
        </member>
1676
        <member name="M:OpenNETCF.Windows.Forms.ComboBox2.#ctor">
1677
            <summary>
1678
            Default constructor
1679
            </summary>
1680
        </member>
1681
        <member name="M:OpenNETCF.Windows.Forms.ComboBox2.OnParentChanged(System.EventArgs)">
1682
            <summary>
1683
 
1684
            </summary>
1685
            <param name="e"></param>
1686
        </member>
1687
        <member name="M:OpenNETCF.Windows.Forms.ComboBox2.FindString(System.String)">
1688
            <summary>
1689
            Finds the first item in the combo box that starts with the specified string.
1690
            </summary>
1691
            <param name="s">The <see cref="T:System.String"/> to search for.</param>
1692
            <returns>The zero-based index of the first item found; returns -1 if no match is found.</returns>
1693
        </member>
1694
        <member name="M:OpenNETCF.Windows.Forms.ComboBox2.FindString(System.String,System.Int32)">
1695
            <summary>
1696
            Finds the first item in the combo box that starts with the specified string.
1697
            </summary>
1698
            <param name="s">The <see cref="T:System.String"/> to search for.</param>
1699
            <param name="startIndex">The zero-based index of the item before the first item to be searched. Set to -1 to search from the beginning of the control.</param>
1700
            <returns>The zero-based index of the first item found; returns -1 if no match is found.</returns>
1701
        </member>
1702
        <member name="M:OpenNETCF.Windows.Forms.ComboBox2.FindStringExact(System.String)">
1703
            <summary>
1704
            Finds the first item in the combo box that matches the specified string.
1705
            </summary>
1706
            <param name="s">The <see cref="T:System.String"/> to search for.</param>
1707
            <returns>The zero-based index of the first item found; returns -1 if no match is found.</returns>
1708
        </member>
1709
        <member name="M:OpenNETCF.Windows.Forms.ComboBox2.FindStringExact(System.String,System.Int32)">
1710
            <summary>
1711
            Finds the first item after the specified index that matches the specified string.
1712
            </summary>
1713
            <param name="s">The <see cref="T:System.String"/> to search for.</param>
1714
            <param name="startIndex">The zero-based index of the item before the first item to be searched. Set to -1 to search from the beginning of the control.</param>
1715
            <returns>The zero-based index of the first item found; returns -1 if no match is found.</returns>
1716
        </member>
1717
        <member name="F:OpenNETCF.Windows.Forms.ComboBox2.components">
1718
            <summary>
1719
            Required designer variable.
1720
            </summary>
1721
        </member>
1722
        <member name="M:OpenNETCF.Windows.Forms.ComboBox2.Dispose(System.Boolean)">
1723
            <summary>
1724
            Clean up any resources being used.
1725
            </summary>
1726
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
1727
        </member>
1728
        <member name="M:OpenNETCF.Windows.Forms.ComboBox2.InitializeComponent">
1729
            <summary>
1730
            Required method for Designer support - do not modify
1731
            the contents of this method with the code editor.
1732
            </summary>
1733
        </member>
1734
        <member name="P:OpenNETCF.Windows.Forms.ComboBox2.DropDownWidth">
1735
            <summary>
1736
            Gets or sets the width of the of the drop-down portion of a combo box.
1737
            </summary>
1738
        </member>
1739
        <member name="P:OpenNETCF.Windows.Forms.ComboBox2.DroppedDown">
1740
            <summary>
1741
            Gets a value indicating whether the combo box is displaying its drop-down portion.
1742
            </summary>
1743
        </member>
1744
        <member name="P:OpenNETCF.Windows.Forms.ComboBox2.DropDown">
1745
            <summary>
1746
            Show or hides the list of the combobox that has the DropDown or DropDownList
1747
            </summary>
1748
        </member>
1749
        <member name="T:OpenNETCF.Windows.Forms.Control2">
1750
            <summary>
1751
            Extends the standard <see cref="T:System.Windows.Forms.Control"/> class.
1752
            </summary>
1753
            <seealso cref="T:System.Windows.Forms.Control"/>
1754
        </member>
1755
        <member name="F:OpenNETCF.Windows.Forms.Control2.childHandle">
1756
            <summary>
1757
            The child handle of the control
1758
            </summary>
1759
        </member>
1760
        <member name="M:OpenNETCF.Windows.Forms.Control2.#ctor">
1761
            <summary>
1762
            Creates a new <see cref="T:OpenNETCF.Windows.Forms.Control2"/> object.
1763
            </summary>
1764
        </member>
1765
        <member name="M:OpenNETCF.Windows.Forms.Control2.InitCommonControls(System.Int32)">
1766
            <summary>
1767
            Calls InitCommonControlsEx for the specified classes.
1768
            </summary>
1769
            <param name="controlClasses">Mask of control class groups.</param>
1770
            <remarks>Not desktop compatible</remarks>
1771
        </member>
1772
        <member name="M:OpenNETCF.Windows.Forms.Control2.CreateControl">
1773
            <summary>
1774
            Forces the creation of the control, including the creation of the handle and any child controls.
1775
            </summary>
1776
        </member>
1777
        <member name="M:OpenNETCF.Windows.Forms.Control2.OnPaint(System.Windows.Forms.PaintEventArgs)">
1778
            <summary>
1779
            Raises the System.Windows.Forms.Control.Paint event.
1780
            </summary>
1781
            <param name="e">A System.Windows.Forms.PaintEventArgs that contains the event data.</param>
1782
        </member>
1783
        <member name="M:OpenNETCF.Windows.Forms.Control2.OnParentChanged(System.EventArgs)">
1784
            <summary>
1785
            Occurs when the control is associated with a new Parent.
1786
            </summary>
1787
            <param name="e"></param>
1788
        </member>
1789
        <member name="M:OpenNETCF.Windows.Forms.Control2.SetBounds(System.Int32,System.Int32,System.Int32,System.Int32)">
1790
            <summary>
1791
            Sets the bounds of the control to the specified location and size.
1792
            </summary>
1793
            <param name="x">The new <see cref="P:System.Windows.Forms.Control.Left"/> property value of the control.</param>
1794
            <param name="y">The new <see cref="P:System.Windows.Forms.Control.Top"/> property value of the control.</param>
1795
            <param name="width">The new <see cref="P:System.Windows.Forms.Control.Width"/> property value of the control.</param>
1796
            <param name="height"> The new <see cref="P:System.Windows.Forms.Control.Height"/> property value of the control.</param>
1797
        </member>
1798
        <member name="M:OpenNETCF.Windows.Forms.Control2.DefWndProc(Microsoft.WindowsCE.Forms.Message@)">
1799
            <summary>
1800
            Invokes the default window procedure associated with this window.
1801
            It is an error to call this method when the <see cref="P:System.Windows.Forms.Control.Handle"/> property is 0.
1802
            </summary>
1803
            <param name="m">A <see cref="T:Microsoft.WindowsCE.Forms.Message"/> that is associated with the current Windows message.</param>
1804
        </member>
1805
        <member name="M:OpenNETCF.Windows.Forms.Control2.Dispose(System.Boolean)">
1806
            <summary>
1807
            Releases the unmanaged resources used by the <see cref="T:OpenNETCF.Windows.Forms.Control2"/> and its child controls and optionally releases the managed resources.
1808
            </summary>
1809
            <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
1810
        </member>
1811
        <member name="M:OpenNETCF.Windows.Forms.Control2.InvokeRequiredForControl(System.Windows.Forms.Control)">
1812
            <summary>
1813
            Gets a value indicating whether the caller must call an invoke method when making method calls to the control because the caller is on a different thread than the one the control was created on.
1814
            </summary>
1815
            <param name="c">Control which must be checked that it's created on a different thread than the calling thread.</param>
1816
            <returns>true if the control was created on a different thread than the calling thread (indicating that you must make calls to the control through an invoke method); otherwise, false.</returns>
1817
        </member>
1818
        <member name="M:OpenNETCF.Windows.Forms.Control2.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
1819
            <summary>
1820
            Extends the standard <see cref="T:System.Windows.Forms.Control"/> class.
1821
            </summary>
1822
            <seealso cref="T:System.Windows.Forms.Control"/>
1823
        </member>
1824
        <member name="P:OpenNETCF.Windows.Forms.Control2.BorderStyle">
1825
            <summary>
1826
            Gets or sets the border style for the control.
1827
            </summary>
1828
            <value>One of the <see cref="P:OpenNETCF.Windows.Forms.Control2.BorderStyle"/> values.
1829
            Fixed3D is interpreted the same as FixedSingle.</value>
1830
        </member>
1831
        <member name="P:OpenNETCF.Windows.Forms.Control2.Created">
1832
            <summary>
1833
            Gets a value indicating whether the control has been created.
1834
            </summary>
1835
        </member>
1836
        <member name="P:OpenNETCF.Windows.Forms.Control2.CreateParams">
1837
            <summary>
1838
            Gets the required creation parameters when the control handle is created.
1839
            </summary>
1840
        </member>
1841
        <member name="P:OpenNETCF.Windows.Forms.Control2.DesignMode">
1842
            <summary>
1843
            Gets a value indicating whether a control is being used on a design surface.
1844
            </summary>
1845
        </member>
1846
        <member name="P:OpenNETCF.Windows.Forms.Control2.RecreatingHandle">
1847
            <summary>
1848
            Gets a value indicating whether the control is currently re-creating its handle.
1849
            </summary>
1850
            <remarks>true if the control is currently re-creating its handle; otherwise, false.</remarks>
1851
        </member>
1852
        <member name="P:OpenNETCF.Windows.Forms.Control2.Text">
1853
            <summary>
1854
            Gets or sets the text associated with this control.
1855
            </summary>
1856
        </member>
1857
        <member name="P:OpenNETCF.Windows.Forms.Control2.ModifierKeys">
1858
            <summary>
1859
            Gets a value indicating which of the modifier keys (SHIFT, CTRL, and ALT) is in a pressed state.
1860
            </summary>
1861
            <value>A bitwise combination of the <see cref="T:System.Windows.Forms.Keys"/> values.
1862
            The default is <see cref="F:System.Windows.Forms.Keys.None"/>.</value>
1863
            <example>The following code example hides a button when the CTRL key is pressed while the button is clicked. This example requires that you have a Button named button1 on a Form.
1864
            <code>[VB]
1865
            Private Sub button1_Click(sender As Object, e As EventArgs) Handles button1.Click
1866
               ' If the CTRL key is pressed when the
1867
               ' control is clicked, hide the control.
1868
               If Control.ModifierKeys = Keys.Control Then
1869
                  CType(sender, Control).Hide()
1870
               End If
1871
            End Sub
1872
            </code>
1873
            <code>[C#]
1874
            private void button1_Click(object sender, System.EventArgs e)
1875
            {
1876
              /* If the CTRL key is pressed when the
1877
                 * control is clicked, hide the control. */
1878
              if(Control.ModifierKeys == Keys.Control)
1879
              {
1880
                 ((Control)sender).Hide();
1881
              }
1882
            }
1883
            </code></example>
1884
        </member>
1885
        <member name="T:OpenNETCF.Windows.Forms.CreateParams">
1886
            <summary>
1887
            Encapsulates the information needed when creating a control.
1888
            </summary>
1889
        </member>
1890
        <member name="M:OpenNETCF.Windows.Forms.CreateParams.#ctor">
1891
            <summary>
1892
            Initializes a new instance of the CreateParams class.
1893
            </summary>
1894
        </member>
1895
        <member name="P:OpenNETCF.Windows.Forms.CreateParams.Caption">
1896
            <summary>
1897
            Gets or sets the control's initial text.
1898
            </summary>
1899
        </member>
1900
        <member name="P:OpenNETCF.Windows.Forms.CreateParams.ClassName">
1901
            <summary>
1902
            Gets or sets the name of the Windows class to derive the control from.
1903
            </summary>
1904
        </member>
1905
        <member name="P:OpenNETCF.Windows.Forms.CreateParams.ClassStyle">
1906
            <summary>
1907
            Gets or sets a bitwise combination of class style values.
1908
            </summary>
1909
        </member>
1910
        <member name="P:OpenNETCF.Windows.Forms.CreateParams.Style">
1911
            <summary>
1912
            Gets or sets a bitwise combination of window style values.
1913
            </summary>
1914
        </member>
1915
        <member name="P:OpenNETCF.Windows.Forms.CreateParams.Param">
1916
            <summary>
1917
            Gets or sets additional parameter information needed to create the control.
1918
            </summary>
1919
        </member>
1920
        <member name="P:OpenNETCF.Windows.Forms.CreateParams.ExStyle">
1921
            <summary>
1922
            Gets or sets a bitwise combination of extended window style values.
1923
            </summary>
1924
        </member>
1925
        <member name="P:OpenNETCF.Windows.Forms.CreateParams.Height">
1926
            <summary>
1927
            Gets or sets the initial height of the control.
1928
            </summary>
1929
        </member>
1930
        <member name="P:OpenNETCF.Windows.Forms.CreateParams.Parent">
1931
            <summary>
1932
            Gets or sets the control's parent.
1933
            </summary>
1934
        </member>
1935
        <member name="P:OpenNETCF.Windows.Forms.CreateParams.Width">
1936
            <summary>
1937
            Gets or sets the initial width of the control.
1938
            </summary>
1939
        </member>
1940
        <member name="P:OpenNETCF.Windows.Forms.CreateParams.X">
1941
            <summary>
1942
            Gets or sets the initial left position of the control.
1943
            </summary>
1944
        </member>
1945
        <member name="P:OpenNETCF.Windows.Forms.CreateParams.Y">
1946
            <summary>
1947
            Gets or sets the initial top position of the control.
1948
            </summary>
1949
        </member>
1950
        <member name="T:OpenNETCF.Windows.Forms.IMessageFilter">
1951
            <summary>
1952
            Defines a message filter interface.
1953
            </summary>
1954
            <remarks>This interface allows an application to capture a message before it is dispatched to a control or form.
1955
            <para>A class that implements the IMessageFilter interface can be added to the application's message pump to filter out a message or perform other operations before the message is dispatched to a form or control. To add the message filter to an application's message pump, use the <see cref="M:OpenNETCF.Windows.Forms.ApplicationEx.AddMessageFilter(OpenNETCF.Windows.Forms.IMessageFilter)"/> method in the <see cref="T:OpenNETCF.Windows.Forms.ApplicationEx"/> class.</para></remarks>
1956
        </member>
1957
        <member name="M:OpenNETCF.Windows.Forms.IMessageFilter.PreFilterMessage(Microsoft.WindowsCE.Forms.Message@)">
1958
            <summary>
1959
            Filters out a message before it is dispatched.
1960
            </summary>
1961
            <param name="m">The message to be dispatched. You cannot modify this message.</param>
1962
            <returns>true to filter the message and stop it from being dispatched; false to allow the message to continue to the next filter or control.</returns>
1963
        </member>
1964
        <member name="T:OpenNETCF.Windows.Forms.Cursor2">
1965
            <summary>
1966
            Implements showing and hiding the cursor.
1967
            <example>
1968
            using(new Cursor2())
1969
            {
1970
                //Do your long procudure
1971
            }//cursor will automatically be hidden
1972
            </example>
1973
            </summary>
1974
        </member>
1975
        <member name="F:OpenNETCF.Windows.Forms.Cursor2._refCount">
1976
            <summary>
1977
            Reference count to see if the cursor should be hidden or not
1978
            </summary>
1979
        </member>
1980
        <member name="M:OpenNETCF.Windows.Forms.Cursor2.#ctor">
1981
            <summary>
1982
            Default Contructor
1983
            </summary>
1984
        </member>
1985
        <member name="M:OpenNETCF.Windows.Forms.Cursor2.Dispose">
1986
            <summary>
1987
            Hides the cursor if there are no more references
1988
            </summary>
1989
        </member>
1990
        <member name="T:OpenNETCF.Windows.Forms.DateTimePicker2">
1991
            <summary>
1992
            Extends the <see cref="T:System.Windows.Forms.DateTimePicker"/> control.
1993
            </summary>
1994
        </member>
1995
        <member name="M:OpenNETCF.Windows.Forms.DateTimePicker2.#ctor">
1996
            <summary>
1997
            Initializes a new instance of the <see cref="T:OpenNETCF.Windows.Forms.DateTimePicker2"/> class.
1998
            </summary>
1999
        </member>
2000
        <member name="M:OpenNETCF.Windows.Forms.DateTimePicker2.OnCloseUp(System.EventArgs)">
2001
            <summary>
2002
            Raises the <see cref="E:OpenNETCF.Windows.Forms.DateTimePicker2.CloseUp"/> event.
2003
            </summary>
2004
            <param name="eventargs">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
2005
        </member>
2006
        <member name="M:OpenNETCF.Windows.Forms.DateTimePicker2.OnDropDown(System.EventArgs)">
2007
            <summary>
2008
            Raises the <see cref="E:OpenNETCF.Windows.Forms.DateTimePicker2.DropDown"/> event.
2009
            </summary>
2010
            <param name="eventargs">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
2011
        </member>
2012
        <member name="M:OpenNETCF.Windows.Forms.DateTimePicker2.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
2013
            <summary>
2014
            Extends the <see cref="T:System.Windows.Forms.DateTimePicker"/> control.
2015
            </summary>
2016
        </member>
2017
        <member name="E:OpenNETCF.Windows.Forms.DateTimePicker2.CloseUp">
2018
            <summary>
2019
            Occurs when the drop-down calendar is dismissed and disappears.
2020
            </summary>
2021
        </member>
2022
        <member name="E:OpenNETCF.Windows.Forms.DateTimePicker2.DropDown">
2023
            <summary>
2024
            Occurs when the drop-down calendar is shown.
2025
            </summary>
2026
        </member>
2027
        <member name="T:OpenNETCF.Windows.Forms.NativeWindow">
2028
            <summary>
2029
            Provides a low-level encapsulation of a window handle and a window procedure.
2030
            </summary>
2031
        </member>
2032
        <member name="M:OpenNETCF.Windows.Forms.NativeWindow.AssignHandle(System.IntPtr)">
2033
            <summary>
2034
            Assigns a handle to this window.
2035
            </summary>
2036
            <param name="handle">The handle to assign to this window.</param>
2037
        </member>
2038
        <member name="M:OpenNETCF.Windows.Forms.NativeWindow.CreateHandle(OpenNETCF.Windows.Forms.CreateParams)">
2039
            <summary>
2040
             Creates a window and its handle with the specified creation parameters.
2041
            </summary>
2042
            <param name="cp">CreateParams that specifies the creation parameters for this window.</param>
2043
        </member>
2044
        <member name="M:OpenNETCF.Windows.Forms.NativeWindow.ReleaseHandle">
2045
            <summary>
2046
            Releases the handle associated with this window.
2047
            </summary>
2048
        </member>
2049
        <member name="M:OpenNETCF.Windows.Forms.NativeWindow.WndProc(Microsoft.WindowsCE.Forms.Message@)">
2050
            <summary>
2051
            Invokes the default window procedure associated with this window.
2052
            </summary>
2053
            <param name="m">A System.Windows.Forms.Message that is associated with the current Windows message.</param>
2054
        </member>
2055
        <member name="M:OpenNETCF.Windows.Forms.NativeWindow.DefWndProc(Microsoft.WindowsCE.Forms.Message@)">
2056
            <summary>
2057
            Invokes the default window procedure associated with this window. It is an error to call this method when the System.Windows.Forms.NativeWindow.Handle property is 0.
2058
            </summary>
2059
            <param name="m">A System.Windows.Forms.Message that is associated with the current Windows message.</param>
2060
        </member>
2061
        <member name="M:OpenNETCF.Windows.Forms.NativeWindow.DestroyHandle">
2062
            <summary>
2063
            Destroys the window and its handle.
2064
            </summary>
2065
        </member>
2066
        <member name="M:OpenNETCF.Windows.Forms.NativeWindow.FromHandle(System.IntPtr)">
2067
            <summary>
2068
            Retrieves the window associated with the specified handle.
2069
            </summary>
2070
            <param name="handle">A handle to a window.</param>
2071
            <returns>The System.Windows.Forms.NativeWindow associated with the specified handle. This method returns null when the handle does not have an associated window.</returns>
2072
        </member>
2073
        <member name="T:OpenNETCF.Windows.Forms.DEVMODE">
2074
            <summary>
2075
            DEVMODE struct used with ChangeDisplaySettingsEx
2076
            </summary>
2077
        </member>
2078
        <member name="T:OpenNETCF.Windows.Forms.DrawDirection">
2079
            <summary>
2080
            The direction of the animiation in the AnimateCtl.
2081
            </summary>
2082
        </member>
2083
        <member name="F:OpenNETCF.Windows.Forms.DrawDirection.Horizontal">
2084
            <summary>
2085
            The layout of the animation is horizontal
2086
            </summary>
2087
        </member>
2088
        <member name="F:OpenNETCF.Windows.Forms.DrawDirection.Vertical">
2089
            <summary>
2090
            The layout of the animation is vertical
2091
            </summary>
2092
        </member>
2093
        <member name="T:OpenNETCF.Windows.Forms.DrawItemEventArgs">
2094
            <summary>
2095
            Provides data for the DrawItem event.
2096
            </summary>
2097
        </member>
2098
        <member name="M:OpenNETCF.Windows.Forms.DrawItemEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Font,System.Drawing.Rectangle,System.Int32,OpenNETCF.Windows.Forms.DrawItemState,System.Drawing.Color,System.Drawing.Color)">
2099
            <summary>
2100
            Initializes a new instance
2101
            </summary>
2102
        </member>
2103
        <member name="M:OpenNETCF.Windows.Forms.DrawItemEventArgs.#ctor(System.Drawing.Graphics,System.Drawing.Font,System.Drawing.Rectangle,System.Int32,OpenNETCF.Windows.Forms.DrawItemState)">
2104
            <summary>
2105
            Initializes a new instance
2106
            </summary>
2107
        </member>
2108
        <member name="M:OpenNETCF.Windows.Forms.DrawItemEventArgs.DrawBackground">
2109
            <summary>
2110
            Draws the background within the bounds specified in the DrawItemEventArgs constructor and with the appropriate color.
2111
            </summary>
2112
        </member>
2113
        <member name="M:OpenNETCF.Windows.Forms.DrawItemEventArgs.DrawBackground(System.Drawing.Color)">
2114
            <summary>
2115
            Draws the background within the bounds specified in the DrawItemEventArgs constructor and with the appropriate color.
2116
            </summary>
2117
        </member>
2118
        <member name="M:OpenNETCF.Windows.Forms.DrawItemEventArgs.DrawFocusRectangle">
2119
            <summary>
2120
            Draws a focus rectangle.
2121
            </summary>
2122
        </member>
2123
        <member name="P:OpenNETCF.Windows.Forms.DrawItemEventArgs.Bounds">
2124
            <summary>
2125
            Gets the rectangle that represents the bounds of the item that is being drawn.
2126
            </summary>
2127
        </member>
2128
        <member name="P:OpenNETCF.Windows.Forms.DrawItemEventArgs.State">
2129
            <summary>
2130
            Gets the state of the item being drawn.
2131
            </summary>
2132
        </member>
2133
        <member name="P:OpenNETCF.Windows.Forms.DrawItemEventArgs.Graphics">
2134
            <summary>
2135
            Gets the graphics surface to draw the item on.
2136
            </summary>
2137
        </member>
2138
        <member name="P:OpenNETCF.Windows.Forms.DrawItemEventArgs.Index">
2139
            <summary>
2140
            Gets the index value of the item that is being drawn.
2141
            </summary>
2142
        </member>
2143
        <member name="P:OpenNETCF.Windows.Forms.DrawItemEventArgs.Font">
2144
            <summary>
2145
            Gets the font assigned to the item being drawn.
2146
            </summary>
2147
        </member>
2148
        <member name="P:OpenNETCF.Windows.Forms.DrawItemEventArgs.BackColor">
2149
            <summary>
2150
            Gets the background color of the item that is being drawn.
2151
            </summary>
2152
        </member>
2153
        <member name="P:OpenNETCF.Windows.Forms.DrawItemEventArgs.ForeColor">
2154
            <summary>
2155
            Gets the foreground color of the of the item being drawn.
2156
            </summary>
2157
        </member>
2158
        <member name="T:OpenNETCF.Windows.Forms.DrawItemState">
2159
            <summary>
2160
            Specifies the state of an item that is being drawn.
2161
            </summary>
2162
        </member>
2163
        <member name="F:OpenNETCF.Windows.Forms.DrawItemState.None">
2164
            <summary>
2165
            The item currently has no state.
2166
            </summary>
2167
        </member>
2168
        <member name="F:OpenNETCF.Windows.Forms.DrawItemState.Selected">
2169
            <summary>
2170
            The item is selected.
2171
            </summary>
2172
        </member>
2173
        <member name="F:OpenNETCF.Windows.Forms.DrawItemState.Disabled">
2174
            <summary>
2175
            The item is disabled.
2176
            </summary>
2177
        </member>
2178
        <member name="F:OpenNETCF.Windows.Forms.DrawItemState.Focus">
2179
            <summary>
2180
            The item has focus.
2181
            </summary>
2182
        </member>
2183
        <member name="T:OpenNETCF.Windows.Forms.DrawMode">
2184
            <summary>
2185
            Specifies how the elements of a control are drawn.
2186
            </summary>
2187
        </member>
2188
        <member name="F:OpenNETCF.Windows.Forms.DrawMode.Normal">
2189
            <summary>
2190
            All the elements in a control are drawn by the operating system and are of the same size.
2191
            </summary>
2192
        </member>
2193
        <member name="F:OpenNETCF.Windows.Forms.DrawMode.OwnerDrawFixed">
2194
            <summary>
2195
            All the elements in the control are drawn manually and are of the same size.
2196
            </summary>
2197
        </member>
2198
        <member name="T:OpenNETCF.Windows.Forms.DrawStyle">
2199
            <summary>
2200
            Represents the form in which to render the bar portion of the ProgressBar2 control.
2201
            </summary>
2202
        </member>
2203
        <member name="F:OpenNETCF.Windows.Forms.DrawStyle.Solid">
2204
            <summary>
2205
            Use a solid color for the progress bar
2206
            </summary>
2207
        </member>
2208
        <member name="F:OpenNETCF.Windows.Forms.DrawStyle.Gradient">
2209
            <summary>
2210
            Use a gradient color for the progress bar.  <seealso cref="P:OpenNETCF.Windows.Forms.ProgressBar2.BarGradientColor"/>
2211
            </summary>
2212
        </member>
2213
        <member name="T:OpenNETCF.Windows.Forms.KeyStateFlags">
2214
            <summary>
2215
            KeyStateFlags for Keyboard methods
2216
            </summary>
2217
        </member>
2218
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.Toggled">
2219
            <summary>
2220
            Key is toggled.
2221
            </summary>
2222
        </member>
2223
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.AsyncDown">
2224
            <summary>
2225
 
2226
            </summary>
2227
        </member>
2228
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.PrevDown">
2229
            <summary>
2230
            Key was previously down.
2231
            </summary>
2232
        </member>
2233
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.Down">
2234
            <summary>
2235
            Key is currently down.
2236
            </summary>
2237
        </member>
2238
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.AnyCtrl">
2239
            <summary>
2240
            Left or right CTRL key is down.
2241
            </summary>
2242
        </member>
2243
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.AnyShift">
2244
            <summary>
2245
            Left or right SHIFT key is down.
2246
            </summary>
2247
        </member>
2248
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.AnyAlt">
2249
            <summary>
2250
            Left or right ALT key is down.
2251
            </summary>
2252
        </member>
2253
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.Capital">
2254
            <summary>
2255
            VK_CAPITAL is toggled.
2256
            </summary>
2257
        </member>
2258
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.LeftCtrl">
2259
            <summary>
2260
            Left CTRL key is down.
2261
            </summary>
2262
        </member>
2263
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.LeftShift">
2264
            <summary>
2265
            Left SHIFT key is down.
2266
            </summary>
2267
        </member>
2268
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.LeftAlt">
2269
            <summary>
2270
            Left ALT key is down.
2271
            </summary>
2272
        </member>
2273
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.LeftWin">
2274
            <summary>
2275
            Left Windows logo key is down.
2276
            </summary>
2277
        </member>
2278
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.RightCtrl">
2279
            <summary>
2280
            Right CTRL key is down.
2281
            </summary>
2282
        </member>
2283
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.RightShift">
2284
            <summary>
2285
            Right SHIFT key is down
2286
            </summary>
2287
        </member>
2288
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.RightAlt">
2289
            <summary>
2290
            Right ALT key is down
2291
            </summary>
2292
        </member>
2293
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.RightWin">
2294
            <summary>
2295
            Right Windows logo key is down.
2296
            </summary>
2297
        </member>
2298
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.Dead">
2299
            <summary>
2300
            Corresponding character is dead character.
2301
            </summary>
2302
        </member>
2303
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.NoCharacter">
2304
            <summary>
2305
            No characters in pCharacterBuffer to translate.
2306
            </summary>
2307
        </member>
2308
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.Language1">
2309
            <summary>
2310
            Use for language specific shifts.
2311
            </summary>
2312
        </member>
2313
        <member name="F:OpenNETCF.Windows.Forms.KeyStateFlags.NumLock">
2314
            <summary>
2315
            NumLock toggled state.
2316
            </summary>
2317
        </member>
2318
        <member name="T:OpenNETCF.Windows.Forms.GradientStyle">
2319
            <summary>
2320
            Represents the style in which to render the gradient progress bar.
2321
            </summary>
2322
        </member>
2323
        <member name="F:OpenNETCF.Windows.Forms.GradientStyle.Normal">
2324
            <summary>
2325
            Renders the gradient progress bar from top to bottom
2326
            </summary>
2327
        </member>
2328
        <member name="F:OpenNETCF.Windows.Forms.GradientStyle.Middle">
2329
            <summary>
2330
            Renders the gradient progress bar from middle outwards
2331
            </summary>
2332
        </member>
2333
        <member name="T:OpenNETCF.Windows.Forms.GroupBox">
2334
            <summary>
2335
            Represents a container control used to group other controls.
2336
            </summary>
2337
        </member>
2338
        <member name="M:OpenNETCF.Windows.Forms.GroupBox.#ctor">
2339
            <summary>
2340
            Initializes a new instance of the GroupBox class.
2341
            </summary>
2342
        </member>
2343
        <member name="M:OpenNETCF.Windows.Forms.GroupBox.OnEnabledChanged(System.EventArgs)">
2344
            <summary>
2345
            Raises the EnabledChanged event.
2346
            </summary>
2347
            <param name="e">An EventArgs that contains the event data.</param>
2348
        </member>
2349
        <member name="M:OpenNETCF.Windows.Forms.GroupBox.OnPaint(System.Windows.Forms.PaintEventArgs)">
2350
            <summary>
2351
            Raises the Paint event.
2352
            </summary>
2353
            <param name="e">A PaintEventArgs that contains the event data.</param>
2354
        </member>
2355
        <member name="M:OpenNETCF.Windows.Forms.GroupBox.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
2356
            <summary>
2357
            Paints the background of the control.
2358
            </summary>
2359
            <param name="e">A PaintEventArgs that contains information about the control to paint.</param>
2360
            <remarks>
2361
            <b>Notes to Inheritors:</b> With the the hope of preventing noticeable flicker, this method has be overridden to do nothing. Therefore, all painting should be done in the OnPaint method.
2362
            </remarks>
2363
        </member>
2364
        <member name="M:OpenNETCF.Windows.Forms.GroupBox.OnResize(System.EventArgs)">
2365
            <summary>
2366
            Raises the Resize event.
2367
            </summary>
2368
            <param name="e">An EventArgs that contains the event data.</param>
2369
        </member>
2370
        <member name="M:OpenNETCF.Windows.Forms.GroupBox.OnTextChanged(System.EventArgs)">
2371
            <summary>
2372
            Raises the TextChanged event.
2373
            </summary>
2374
            <param name="e">An EventArgs that contains the event data.</param>
2375
        </member>
2376
        <member name="M:OpenNETCF.Windows.Forms.GroupBox.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
2377
            <summary>
2378
            Represents a container control used to group other controls.
2379
            </summary>
2380
        </member>
2381
        <member name="P:OpenNETCF.Windows.Forms.GroupBox.BorderStyle">
2382
            <summary>
2383
            Gets or sets the style of the border for the control.
2384
            </summary>
2385
            <value>One of the <see cref="T:System.Windows.Forms.BorderStyle"/> values. The default is FixedSingle.</value>
2386
            <remarks>
2387
            It is recommended that applications targeting the broad Windows platform use the Fixed3D value, and applications targeting either the Pocket PC or Smartphone platform use the default, FixedSingle.
2388
            </remarks>
2389
        </member>
2390
        <member name="P:OpenNETCF.Windows.Forms.GroupBox.Font">
2391
            <summary>
2392
            Gets or sets the font of the text displayed by the control.
2393
            </summary>
2394
            <value>The <see cref="T:System.Drawing.Font"/> of the text displayed by the control. The default is "Tahoma, 9pt, Bold".</value>
2395
        </member>
2396
        <member name="P:OpenNETCF.Windows.Forms.GroupBox.ForeColor">
2397
            <summary>
2398
            Gets or sets the foreground color of the control.
2399
            </summary>
2400
            <value>The <see cref="T:System.Drawing.Color"/> used as the foreground color for the control.</value>
2401
        </member>
2402
        <member name="P:OpenNETCF.Windows.Forms.GroupBox.Text">
2403
            <summary>
2404
            Gets or sets the text associated with the control.
2405
            </summary>
2406
            <value>The <see cref="T:System.String"/> containing the text associated with the control.</value>
2407
        </member>
2408
        <member name="T:OpenNETCF.Windows.Forms.Help2">
2409
            <summary>
2410
            Encapsulates the PegHelp HTML Help engine.
2411
            </summary>
2412
            <remarks>You cannot create a new instance of the Help class.
2413
            To provide Help to an application, call the static ShowHelp method.</remarks>
2414
        </member>
2415
        <member name="M:OpenNETCF.Windows.Forms.Help2.ShowHelp(System.Windows.Forms.Control,System.String)">
2416
            <summary>
2417
            Displays the contents of the Help file at the specified URL.
2418
            </summary>
2419
            <param name="parent">A <see cref="T:System.Windows.Forms.Control"/> that identifies the parent of the Help dialog box.</param>
2420
            <param name="url">The path and name of the Help file.</param>
2421
            <example>The following code example demonstrates the ShowHelp method.
2422
            To run this example paste the following code in a form that contains a button named Button1.
2423
            Ensure the button's click event is connected to the event-handling method in this example.
2424
            <code>[Visual Basic]
2425
            ' Open the Help file for the application.
2426
            Private Sub Button1_Click(ByVal sender As System.Object, _
2427
            	ByVal e As System.EventArgs) Handles Button1.Click
2428
 
2429
            	Help.ShowHelp(TextBox1, "\windows\myapp.htm")
2430
            End Sub</code>
2431
            <code>[C#]
2432
            // Open the Help file for the application.
2433
            private void Button1_Click(System.Object sender, System.EventArgs e)
2434
            {
2435
            	Help.ShowHelp(TextBox1, "\\windows\\myapp.htm");
2436
            }</code></example>
2437
        </member>
2438
        <member name="M:OpenNETCF.Windows.Forms.Help2.ShowHelp(System.Windows.Forms.Control,System.String,OpenNETCF.Windows.Forms.HelpNavigator)">
2439
            <summary>
2440
            Displays the contents of the Help file found at the specified URL for a specific topic.
2441
            </summary>
2442
            <param name="parent">A <see cref="T:System.Windows.Forms.Control"/> that identifies the parent of the Help dialog box.</param>
2443
            <param name="url">The path and name of the Help file.</param>
2444
            <param name="navigator">One of the <see cref="T:OpenNETCF.Windows.Forms.HelpNavigator"/> values.</param>
2445
        </member>
2446
        <member name="M:OpenNETCF.Windows.Forms.Help2.ShowHelp(System.Windows.Forms.Control,System.String,System.String)">
2447
            <summary>
2448
            Displays the contents of the Help file found at the specified URL for a specific topic.
2449
            </summary>
2450
            <param name="parent">A <see cref="T:System.Windows.Forms.Control"/> that identifies the parent of the Help dialog box.</param>
2451
            <param name="url">The path and name of the Help file.</param>
2452
            <param name="topic">The topic to display Help for.</param>
2453
        </member>
2454
        <member name="M:OpenNETCF.Windows.Forms.Help2.ShowHelp(System.Windows.Forms.Control,System.String,OpenNETCF.Windows.Forms.HelpNavigator,System.String)">
2455
            <summary>
2456
            Displays the contents of the Help file located at the URL supplied.
2457
            </summary>
2458
            <param name="parent">A <see cref="T:System.Windows.Forms.Control"/> that identifies the parent of the Help dialog box.</param>
2459
            <param name="url">The path and name of the Help file.</param>
2460
            <param name="command">One of the <see cref="T:OpenNETCF.Windows.Forms.HelpNavigator"/> values.</param>
2461
            <param name="param">The anchor name of the topic to display</param>
2462
        </member>
2463
        <member name="T:OpenNETCF.Windows.Forms.HelpNavigator">
2464
            <summary>
2465
            Specifies constants indicating which elements of the Help file to display.
2466
            </summary>
2467
            <seealso cref="T:System.Windows.Forms.HelpNavigator">System.Windows.Forms.HelpNavigator Enum</seealso>
2468
        </member>
2469
        <member name="F:OpenNETCF.Windows.Forms.HelpNavigator.Find">
2470
            <summary>
2471
            Specifies that the search page of a specified URL is displayed.
2472
            </summary>
2473
        </member>
2474
        <member name="F:OpenNETCF.Windows.Forms.HelpNavigator.TableOfContents">
2475
            <summary>
2476
            Specifies that the table of contents of the specfied URL is displayed.
2477
            </summary>
2478
        </member>
2479
        <member name="F:OpenNETCF.Windows.Forms.HelpNavigator.Topic">
2480
            <summary>
2481
            Specifies that the topic referenced by the specified URL is displayed.
2482
            </summary>
2483
        </member>
2484
        <member name="T:OpenNETCF.Windows.Forms.ImageViewer">
2485
            <summary>
2486
            Image viewer control to display various image formats.
2487
            </summary>
2488
        </member>
2489
        <member name="M:OpenNETCF.Windows.Forms.ImageViewer.#ctor">
2490
            <summary>
2491
            Default constructor
2492
            </summary>
2493
        </member>
2494
        <member name="M:OpenNETCF.Windows.Forms.ImageViewer.ZoomOut">
2495
            <summary>
2496
            Zooms in the image by the default 0.2 factor.
2497
            </summary>
2498
        </member>
2499
        <member name="M:OpenNETCF.Windows.Forms.ImageViewer.Zoom(System.Int32)">
2500
            <summary>
2501
            Zooms the image.
2502
            </summary>
2503
            <param name="zoomFactor">Zoom factor.</param>
2504
        </member>
2505
        <member name="M:OpenNETCF.Windows.Forms.ImageViewer.ZoomIn">
2506
            <summary>
2507
            Zooms out the image by the default 0.2 factor.
2508
            </summary>
2509
        </member>
2510
        <member name="F:OpenNETCF.Windows.Forms.ImageViewer.components">
2511
            <summary>
2512
            Required designer variable.
2513
            </summary>
2514
        </member>
2515
        <member name="M:OpenNETCF.Windows.Forms.ImageViewer.Dispose(System.Boolean)">
2516
            <summary>
2517
            Clean up any resources being used.
2518
            </summary>
2519
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
2520
        </member>
2521
        <member name="M:OpenNETCF.Windows.Forms.ImageViewer.InitializeComponent">
2522
            <summary>
2523
            Required method for Designer support - do not modify
2524
            the contents of this method with the code editor.
2525
            </summary>
2526
        </member>
2527
        <member name="M:OpenNETCF.Windows.Forms.ImageViewer.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
2528
            <summary>
2529
            Image viewer control to display various image formats.
2530
            </summary>
2531
        </member>
2532
        <member name="P:OpenNETCF.Windows.Forms.ImageViewer.Image">
2533
            <summary>
2534
            Gets or sets the image that the ImageViewer displays.
2535
            </summary>
2536
        </member>
2537
        <member name="P:OpenNETCF.Windows.Forms.ImageViewer.Center">
2538
            <summary>
2539
            Gets or sets the value to specify if the image should be centered.
2540
            </summary>
2541
        </member>
2542
        <member name="T:OpenNETCF.Windows.Forms.ItemCollection">
2543
            <summary>
2544
            Represents the collection of items in a ListBox2.
2545
            </summary>
2546
        </member>
2547
        <member name="M:OpenNETCF.Windows.Forms.ItemCollection.Add(OpenNETCF.Windows.Forms.ListItem)">
2548
            <summary>
2549
            Adds an item to the list of items for a ListBox2.
2550
            </summary>
2551
            <param name="value">ListItem to add</param>
2552
            <returns>Newly created ListItem</returns>
2553
        </member>
2554
        <member name="M:OpenNETCF.Windows.Forms.ItemCollection.Add(System.String)">
2555
            <summary>
2556
            Adds an item to the list of items for a ListBox2
2557
            </summary>
2558
            <param name="value">string for text property</param>
2559
            <returns>Newly created ListItem</returns>
2560
        </member>
2561
        <member name="M:OpenNETCF.Windows.Forms.ItemCollection.Remove(OpenNETCF.Windows.Forms.ListItem)">
2562
            <summary>
2563
            Removes the specified object from the collection.
2564
            </summary>
2565
            <param name="value">ListItem to remove</param>
2566
        </member>
2567
        <member name="M:OpenNETCF.Windows.Forms.ItemCollection.Insert(System.Int32,OpenNETCF.Windows.Forms.ListItem)">
2568
            <summary>
2569
            Inserts an item into the list box at the specified index.
2570
            </summary>
2571
            <param name="index">The zero-based index location where the item is inserted.</param>
2572
            <param name="value">An object representing the item to insert.</param>
2573
        </member>
2574
        <member name="M:OpenNETCF.Windows.Forms.ItemCollection.Contains(OpenNETCF.Windows.Forms.ListItem)">
2575
            <summary>
2576
            Determines whether the specified item is located within the collection.
2577
            </summary>
2578
            <param name="value">An object representing the item to locate in the collection.</param>
2579
            <returns>true if the item is located within the collection; otherwise, false .</returns>
2580
        </member>
2581
        <member name="M:OpenNETCF.Windows.Forms.ItemCollection.Clear">
2582
            <summary>
2583
            Removes all elements from the System.Collections.ArrayList.
2584
            </summary>
2585
        </member>
2586
        <member name="M:OpenNETCF.Windows.Forms.ItemCollection.IndexOf(OpenNETCF.Windows.Forms.ListItem)">
2587
            <summary>
2588
            Returns the index within the collection of the specified item
2589
            </summary>
2590
            <param name="value">An object representing the item to locate in the collection.</param>
2591
            <returns>The zero-based index where the item is located within the collection; otherwise, negative one (-1). </returns>
2592
        </member>
2593
        <member name="P:OpenNETCF.Windows.Forms.ItemCollection.Item(System.Int32)">
2594
            <summary>
2595
            Gets or sets the item.
2596
            </summary>
2597
        </member>
2598
        <member name="P:OpenNETCF.Windows.Forms.ItemCollection.Item(System.String)">
2599
            <summary>
2600
            Gets the item.
2601
            </summary>
2602
        </member>
2603
        <member name="T:OpenNETCF.Windows.Forms.KeyData">
2604
            <summary>
2605
            Data passed on by the KeyboardHook
2606
            </summary>
2607
        </member>
2608
        <member name="P:OpenNETCF.Windows.Forms.KeyData.KeyCode">
2609
            <summary>
2610
            The key code
2611
            </summary>
2612
        </member>
2613
        <member name="P:OpenNETCF.Windows.Forms.KeyData.ScanCode">
2614
            <summary>
2615
            The hardware scan code
2616
            </summary>
2617
        </member>
2618
        <member name="P:OpenNETCF.Windows.Forms.KeyData.TimeStamp">
2619
            <summary>
2620
            The Environement.Tickcount time at which the key was intercepted
2621
            </summary>
2622
        </member>
2623
        <member name="T:OpenNETCF.Windows.Forms.KeyHookEventHandler">
2624
            <summary>
2625
            Handler for KeyboardHook key events
2626
            </summary>
2627
            <param name="keyMessage">The key message (up, down, sysup or sysdown)</param>
2628
            <param name="keyData">The key data associated with the event</param>
2629
            <returns>Return <b>true</b> to pass the key data on to the next hook, <b>false</b> to prevent further system processing</returns>
2630
        </member>
2631
        <member name="T:OpenNETCF.Windows.Forms.KeyboardHook">
2632
            <summary>
2633
            Used for system-wide hooking of keyboard events
2634
            </summary>
2635
        </member>
2636
        <member name="M:OpenNETCF.Windows.Forms.KeyboardHook.#ctor">
2637
            <summary>
2638
            Creates an instance of a KeyboardHook
2639
            </summary>
2640
        </member>
2641
        <member name="M:OpenNETCF.Windows.Forms.KeyboardHook.Dispose">
2642
            <summary>
2643
            Disposes the KeyboardHook
2644
            </summary>
2645
        </member>
2646
        <member name="M:OpenNETCF.Windows.Forms.KeyboardHook.Finalize">
2647
            <summary>
2648
            Finalizes the KeyboardHook
2649
            </summary>
2650
        </member>
2651
        <member name="E:OpenNETCF.Windows.Forms.KeyboardHook.KeyDetected">
2652
            <summary>
2653
            Fired when keyboard data is present in the system
2654
            </summary>
2655
        </member>
2656
        <member name="P:OpenNETCF.Windows.Forms.KeyboardHook.Enabled">
2657
            <summary>
2658
            Gets or sets the state of the hook
2659
            </summary>
2660
        </member>
2661
        <member name="P:OpenNETCF.Windows.Forms.KeyboardHook.PassOnKeys">
2662
            <summary>
2663
            Set to <b>false</b> to prevent the system from forwarding the key data to further hooks or the target control.  Defaults to <b>true</b>
2664
            </summary>
2665
        </member>
2666
        <member name="T:OpenNETCF.Windows.Forms.LinkLabel2">
2667
            <summary>
2668
            Represents a label control that displays as a hyperlink.
2669
            </summary>
2670
        </member>
2671
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.#ctor">
2672
            <summary>
2673
            Initializes a new instance of the LinkLabel2 class.
2674
            </summary>
2675
        </member>
2676
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.AdjustControlSize">
2677
            <summary>
2678
            Adjusts the size of the control based on the AutoSize property.
2679
            </summary>
2680
        </member>
2681
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.NotifyDefault(System.Boolean)">
2682
            <summary>
2683
            Notifies the link whether it is the default link so that it can adjust its appearance accordingly.
2684
            </summary>
2685
            <param name="value"><b>true</b> if the link is to have the appearance of the default link; otherwise, <b>false</b>.</param>
2686
            <remarks>
2687
            A LinkLabel2 control appears the same regardless of whether it is the default, so
2688
            calling this method will not change the appearance or behavior of the LinkLabel2.
2689
            </remarks>
2690
        </member>
2691
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.OnClick(System.EventArgs)">
2692
            <summary>
2693
            Raises the Click event.
2694
            </summary>
2695
            <param name="e">An EventArgs that contains the event data.</param>
2696
        </member>
2697
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.OnEnabledChanged(System.EventArgs)">
2698
            <summary>
2699
            Raises the EnabledChanged event.
2700
            </summary>
2701
            <param name="e">An EventArgs that contains the event data.</param>
2702
        </member>
2703
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.OnGotFocus(System.EventArgs)">
2704
            <summary>
2705
            Raises the GotFocus event.
2706
            </summary>
2707
            <param name="e">An EventArgs that contains the event data.</param>
2708
        </member>
2709
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
2710
            <summary>
2711
            Raises the KeyDown event.
2712
            </summary>
2713
            <param name="e">A KeyEventArgs that contains the event data.</param>
2714
        </member>
2715
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
2716
            <summary>
2717
            Raises the KeyPress event.
2718
            </summary>
2719
            <param name="e">A KeyPressEventArgs that contains the event data.</param>
2720
        </member>
2721
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.OnLinkClicked(OpenNETCF.Windows.Forms.LinkLabel2LinkClickedEventArgs)">
2722
            <summary>
2723
            Raises the LinkClicked event.
2724
            </summary>
2725
            <param name="e">A LinkLabel2LinkClickedEventArgs that contains the event data.</param>
2726
        </member>
2727
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.OnLostFocus(System.EventArgs)">
2728
            <summary>
2729
            Raises the LostFocus event.
2730
            </summary>
2731
            <param name="e">An EventArgs that contains the event data.</param>
2732
        </member>
2733
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
2734
            <summary>
2735
            Raises the MouseDown event.
2736
            </summary>
2737
            <param name="e">A MouseEventArgs that contains the event data.</param>
2738
        </member>
2739
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
2740
            <summary>
2741
            Raises the MouseUp event.
2742
            </summary>
2743
            <param name="e">A MouseEventArgs that contains the event data.</param>
2744
        </member>
2745
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.OnPaint(System.Windows.Forms.PaintEventArgs)">
2746
            <summary>
2747
            Raises the Paint event.
2748
            </summary>
2749
            <param name="e">A PaintEventArgs that contains the event data.</param>
2750
        </member>
2751
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
2752
            <summary>
2753
            Paints the background of the control.
2754
            </summary>
2755
            <param name="e">A PaintEventArgs that contains information about the control to paint.</param>
2756
            <remarks>
2757
            <b>Notes to Inheritors:</b> With the the hope of preventing noticeable flicker, this method has be overridden to do nothing. Therefore, all painting should be done in the OnPaint method.
2758
            </remarks>
2759
        </member>
2760
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.OnResize(System.EventArgs)">
2761
            <summary>
2762
            Raises the Resize event.
2763
            </summary>
2764
            <param name="e">An EventArgs that contains the event data.</param>
2765
        </member>
2766
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.OnTextChanged(System.EventArgs)">
2767
            <summary>
2768
            Raises the TextChanged event.
2769
            </summary>
2770
            <param name="e">An EventArgs that contains the event data.</param>
2771
        </member>
2772
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.PerformClick">
2773
            <summary>
2774
            Generates a Click event for the link.
2775
            </summary>
2776
        </member>
2777
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.ResetLinkBehavior">
2778
            <summary>
2779
            Resets the LinkBehavior property to its default value.
2780
            </summary>
2781
        </member>
2782
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.ShouldSerializeLinkBehavior">
2783
            <summary>
2784
            Indicates whether the LinkBehavior property should be persisted.
2785
            </summary>
2786
            <returns><b>true</b> if the property value has changed from its default; otherwise, <b>false</b>.</returns>
2787
        </member>
2788
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
2789
            <summary>
2790
            Represents a label control that displays as a hyperlink.
2791
            </summary>
2792
        </member>
2793
        <member name="P:OpenNETCF.Windows.Forms.LinkLabel2.ActiveLinkColor">
2794
            <summary>
2795
            Gets or sets the color of the text in an active state.
2796
            </summary>
2797
            <value>A <see cref="T:System.Drawing.Color"/> that represents the color of the text in an active state. The default is Color.Red.</value>
2798
        </member>
2799
        <member name="P:OpenNETCF.Windows.Forms.LinkLabel2.AutoSize">
2800
            <summary>
2801
            Gets or sets a value indicating whether the control is automatically resized to display its contents.
2802
            </summary>
2803
            <value>A <see cref="T:System.Boolean"/> that is set to <b>true</b> if the control is automatically resized; otherwise, <b>false</b>. The default is <b>false</b>.</value>
2804
        </member>
2805
        <member name="P:OpenNETCF.Windows.Forms.LinkLabel2.DialogResult">
2806
            <summary>
2807
            Gets or sets a value that is returned to the parent form when the link is activated.
2808
            </summary>
2809
            <value>One of the <see cref="T:System.Windows.Forms.DialogResult"/> values. The default value is DialogResult.None.</value>
2810
        </member>
2811
        <member name="P:OpenNETCF.Windows.Forms.LinkLabel2.DisabledLinkColor">
2812
            <summary>
2813
            Gets or sets the color of the text in a disabled state.
2814
            </summary>
2815
            <value>A <see cref="T:System.Drawing.Color"/> that represents the color of the text in a disabled state. The default is SystemColors.GrayText.</value>
2816
        </member>
2817
        <member name="P:OpenNETCF.Windows.Forms.LinkLabel2.Font">
2818
            <summary>
2819
            Gets or sets the font of the text displayed by the control.
2820
            </summary>
2821
            <value>The <see cref="T:System.Drawing.Font"/> of the text displayed by the control.</value>
2822
        </member>
2823
        <member name="P:OpenNETCF.Windows.Forms.LinkLabel2.LinkBehavior">
2824
            <summary>
2825
            Gets or sets a value that represents the behavior of the link.
2826
            </summary>
2827
            <value>A <see cref="T:OpenNETCF.Windows.Forms.LinkBehavior"/> value that represents the behavior of the link. The default is LinkBehavior.AlwaysUnderline.</value>
2828
        </member>
2829
        <member name="P:OpenNETCF.Windows.Forms.LinkLabel2.LinkColor">
2830
            <summary>
2831
            Gets or sets the color of the text in a normal state.
2832
            </summary>
2833
            <value>A <see cref="T:System.Drawing.Color"/> that represents the color of the text in a normal state. The default is Color.Blue.</value>
2834
        </member>
2835
        <member name="P:OpenNETCF.Windows.Forms.LinkLabel2.LinkData">
2836
            <summary>
2837
            Gets or sets the data associated with the link.
2838
            </summary>
2839
            <value>A <see cref="T:System.Object"/> that represents the data associated with the link. The default is a null reference (Nothing in Visual Basic).</value>
2840
        </member>
2841
        <member name="P:OpenNETCF.Windows.Forms.LinkLabel2.LinkVisited">
2842
            <summary>
2843
            Gets or sets a value indicating whether the link should be displayed as though it were visited.
2844
            </summary>
2845
            <value>A <see cref="T:System.Boolean"/> that is set to <b>true</b> if the link should be displayed as though it were visited; otherwise, <b>false</b>. The default is <b>false</b>.</value>
2846
            <remarks>
2847
            This control does not automatically denote that a link is a visited link.
2848
            To display the link as a visited link, you can set the value of this property to <b>true</b>
2849
            in an event handler for the LinkClicked event.
2850
            </remarks>
2851
        </member>
2852
        <member name="P:OpenNETCF.Windows.Forms.LinkLabel2.VisitedLinkColor">
2853
            <summary>
2854
            Gets or sets the color used to indicate that the link has been previously visited.
2855
            </summary>
2856
            <value>A <see cref="T:System.Drawing.Color"/> that represents the color used to indicate that the link has been previously visited. The default is Color.Purple.</value>
2857
        </member>
2858
        <member name="E:OpenNETCF.Windows.Forms.LinkLabel2.LinkClicked">
2859
            <summary>
2860
            Occurs when the link is clicked.
2861
            </summary>
2862
        </member>
2863
        <member name="T:OpenNETCF.Windows.Forms.LinkBehavior">
2864
            <summary>
2865
            Specifies the behavior of a link in a <see cref="T:OpenNETCF.Windows.Forms.LinkLabel2"/>.
2866
            </summary>
2867
        </member>
2868
        <member name="F:OpenNETCF.Windows.Forms.LinkBehavior.AlwaysUnderline">
2869
            <summary>
2870
            The link always displays with underlined text.
2871
            </summary>
2872
        </member>
2873
        <member name="F:OpenNETCF.Windows.Forms.LinkBehavior.NeverUnderline">
2874
            <summary>
2875
            The link text is never underlined. The link can still be distinguished from other text by use of the LinkColor property of the <see cref="T:OpenNETCF.Windows.Forms.LinkLabel2"/> control.
2876
            </summary>
2877
        </member>
2878
        <member name="T:OpenNETCF.Windows.Forms.LinkLabel2LinkClickedEventArgs">
2879
            <summary>
2880
            Provides data for the LinkClicked event of the <see cref="T:OpenNETCF.Windows.Forms.LinkLabel2"/> control.
2881
            </summary>
2882
        </member>
2883
        <member name="M:OpenNETCF.Windows.Forms.LinkLabel2LinkClickedEventArgs.#ctor(System.Object)">
2884
            <summary>
2885
            Initializes a new instance of the LinkLabel2LinkClickedEventArgs class, given the link data.
2886
            </summary>
2887
            <param name="data">The LinkData of the <see cref="T:OpenNETCF.Windows.Forms.LinkLabel2"/> instance.</param>
2888
        </member>
2889
        <member name="P:OpenNETCF.Windows.Forms.LinkLabel2LinkClickedEventArgs.LinkData">
2890
            <summary>
2891
            Gets the data associated with the link.
2892
            </summary>
2893
        </member>
2894
        <member name="T:OpenNETCF.Windows.Forms.LinkLabel2LinkClickedEventHandler">
2895
            <summary>
2896
            Represents the method that will handle the LinkClicked event of a <see cref="T:OpenNETCF.Windows.Forms.LinkLabel2"/>.
2897
            </summary>
2898
            <param name="sender">The source of the event.</param>
2899
            <param name="e">A <see cref="T:OpenNETCF.Windows.Forms.LinkLabel2LinkClickedEventArgs"/> that contains the event data.</param>
2900
        </member>
2901
        <member name="T:OpenNETCF.Windows.Forms.ListBox2">
2902
            <summary>
2903
            Represents a Owner-drawn list control, which displays a collection of items.
2904
            </summary>
2905
        </member>
2906
        <member name="T:OpenNETCF.Windows.Forms.OwnerDrawnList">
2907
            <summary>
2908
            Summary description for OwnerDrawnList.
2909
            </summary>
2910
        </member>
2911
        <member name="M:OpenNETCF.Windows.Forms.OwnerDrawnList.#ctor">
2912
            <summary>
2913
            Initializes a new instance of the OwnerDrawnList class with default values.
2914
            </summary>
2915
        </member>
2916
        <member name="M:OpenNETCF.Windows.Forms.OwnerDrawnList.OnSelectedIndexChanged(System.EventArgs)">
2917
            <summary>
2918
            Raises the SelectedIndexChanged event.
2919
            </summary>
2920
            <param name="e"></param>
2921
        </member>
2922
        <member name="M:OpenNETCF.Windows.Forms.OwnerDrawnList.OnDrawItem(System.Object,OpenNETCF.Windows.Forms.DrawItemEventArgs)">
2923
            <summary>
2924
            Raises the DrawItem event.
2925
            </summary>
2926
        </member>
2927
        <member name="M:OpenNETCF.Windows.Forms.OwnerDrawnList.Refresh">
2928
            <summary>
2929
            Forces the control to invalidate its client area and immediately redraw itself and any items in the list.
2930
            </summary>
2931
        </member>
2932
        <member name="M:OpenNETCF.Windows.Forms.OwnerDrawnList.EnsureVisible(System.Int32)">
2933
            <summary>
2934
            Ensures that the specified item is visible within the control, scrolling the contents of the control if necessary.
2935
            </summary>
2936
            <param name="index">The zero-based index of the item to scroll into view.</param>
2937
        </member>
2938
        <member name="M:OpenNETCF.Windows.Forms.OwnerDrawnList.BeginUpdate">
2939
            <summary>
2940
            Prevents the control from drawing until the EndUpdate method is called.
2941
            </summary>
2942
        </member>
2943
        <member name="M:OpenNETCF.Windows.Forms.OwnerDrawnList.EndUpdate">
2944
            <summary>
2945
            Resumes drawing of the list view control after drawing is suspended by the BeginUpdate method.
2946
            </summary>
2947
        </member>
2948
        <member name="M:OpenNETCF.Windows.Forms.OwnerDrawnList.OnDataSourceChanged(System.EventArgs)">
2949
            <summary>
2950
            Raises the ListBox2.DataSourceChanged event.
2951
            </summary>
2952
            <param name="e">The EventArgs that will be passed to any handlers
2953
            of the DataSourceChanged event.</param>
2954
        </member>
2955
        <member name="M:OpenNETCF.Windows.Forms.OwnerDrawnList.OnDisplayMemberChanged(System.EventArgs)">
2956
            <summary>
2957
            Raises the DataMemberChanged event.
2958
            </summary>
2959
            <param name="e">The EventArgs that will be passed to any handlers
2960
            of the DataMemberChanged event.</param>
2961
        </member>
2962
        <member name="M:OpenNETCF.Windows.Forms.OwnerDrawnList.OnBindingContextChanged(System.EventArgs)">
2963
            <summary>
2964
            Handles binding context changes
2965
            </summary>
2966
            <param name="e">The EventArgs that will be passed to any handlers
2967
            of the BindingContextChanged event.</param>
2968
        </member>
2969
        <member name="M:OpenNETCF.Windows.Forms.OwnerDrawnList.BuildItemForRow(System.Object)">
2970
            <summary>
2971
            Adds item to the items collection.
2972
            </summary>
2973
            <param name="row"></param>
2974
            <returns></returns>
2975
        </member>
2976
        <member name="M:OpenNETCF.Windows.Forms.OwnerDrawnList.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
2977
            <summary>
2978
            Summary description for OwnerDrawnList.
2979
            </summary>
2980
        </member>
2981
        <member name="E:OpenNETCF.Windows.Forms.OwnerDrawnList.DataSourceChanged">
2982
            <summary>
2983
            Raised when the DataSource property changes.
2984
            </summary>
2985
        </member>
2986
        <member name="E:OpenNETCF.Windows.Forms.OwnerDrawnList.DisplayMemberChanged">
2987
             <summary>
2988
             Raised when the DataMember property changes.
2989
            </summary>
2990
        </member>
2991
        <member name="E:OpenNETCF.Windows.Forms.OwnerDrawnList.DrawItem">
2992
            <summary>
2993
            Occurs when the DrawItem has changed
2994
            </summary>
2995
        </member>
2996
        <member name="E:OpenNETCF.Windows.Forms.OwnerDrawnList.SelectedIndexChanged">
2997
            <summary>
2998
            Occurs when the SelectedIndex property has changed.
2999
            </summary>
3000
        </member>
3001
        <member name="P:OpenNETCF.Windows.Forms.OwnerDrawnList.ShowScrollbar">
3002
            <summary>
3003
            Get/set the ShowScrollbar property.
3004
            </summary>
3005
        </member>
3006
        <member name="P:OpenNETCF.Windows.Forms.OwnerDrawnList.TopIndex">
3007
            <summary>
3008
            Gets or sets the index of the first visible item in the OwnerDrawnList.
3009
            </summary>
3010
        </member>
3011
        <member name="P:OpenNETCF.Windows.Forms.OwnerDrawnList.BaseItems">
3012
            <summary>
3013
            Gets the items of the List.
3014
            </summary>
3015
        </member>
3016
        <member name="P:OpenNETCF.Windows.Forms.OwnerDrawnList.ItemHeight">
3017
            <summary>
3018
            Gets or sets a ItemHeight
3019
            </summary>
3020
        </member>
3021
        <member name="P:OpenNETCF.Windows.Forms.OwnerDrawnList.SelectedIndex">
3022
            <summary>
3023
            Gets or sets the zero-based index of the currently selected item in a OwnerDrawnList.
3024
            </summary>
3025
        </member>
3026
        <member name="P:OpenNETCF.Windows.Forms.OwnerDrawnList.BackgroundImage">
3027
            <summary>
3028
            Gets or sets the background image for the control.
3029
            </summary>
3030
        </member>
3031
        <member name="P:OpenNETCF.Windows.Forms.OwnerDrawnList.Height">
3032
            <summary>
3033
            Gets or sets the height of the control.
3034
            </summary>
3035
        </member>
3036
        <member name="P:OpenNETCF.Windows.Forms.OwnerDrawnList.DrawMode">
3037
            <summary>
3038
            Gets or sets the drawing mode for the control.
3039
            </summary>
3040
        </member>
3041
        <member name="P:OpenNETCF.Windows.Forms.OwnerDrawnList.DataSource">
3042
            <summary>
3043
            Gets or sets the data source for this ListBox2 control.
3044
            </summary>
3045
        </member>
3046
        <member name="P:OpenNETCF.Windows.Forms.OwnerDrawnList.DisplayMember">
3047
            <summary>
3048
            Gets or sets a string that specifies the property of the data source whose contents you want to display.
3049
            </summary>
3050
            <value>A <see cref="T:System.String"/> specifying the name of a property of the object specified by the <see cref="P:OpenNETCF.Windows.Forms.OwnerDrawnList.DataSource"/> property.
3051
            The default is an empty string ("").</value>
3052
        </member>
3053
        <member name="M:OpenNETCF.Windows.Forms.ListBox2.#ctor">
3054
            <summary>
3055
            Default constructor
3056
            </summary>
3057
        </member>
3058
        <member name="P:OpenNETCF.Windows.Forms.ListBox2.Items">
3059
            <summary>
3060
            Gets the items of the ListBox2.
3061
            </summary>
3062
        </member>
3063
        <member name="P:OpenNETCF.Windows.Forms.ListBox2.BaseItems">
3064
            <summary>
3065
            Gets a items collection.
3066
            </summary>
3067
        </member>
3068
        <member name="P:OpenNETCF.Windows.Forms.ListBox2.EvenItemColor">
3069
            <summary>
3070
            Gets or sets the background color of the even item.
3071
            </summary>
3072
        </member>
3073
        <member name="P:OpenNETCF.Windows.Forms.ListBox2.LineColor">
3074
            <summary>
3075
            Gets or sets the color of the lines.
3076
            </summary>
3077
        </member>
3078
        <member name="P:OpenNETCF.Windows.Forms.ListBox2.ShowLines">
3079
            <summary>
3080
            Gets or sets text wrapping in the list items
3081
            </summary>
3082
        </member>
3083
        <member name="P:OpenNETCF.Windows.Forms.ListBox2.WrapText">
3084
            <summary>
3085
            Gets or sets text wrapping in the list items
3086
            </summary>
3087
        </member>
3088
        <member name="P:OpenNETCF.Windows.Forms.ListBox2.ImageList">
3089
            <summary>
3090
            Gets or sets the System.Windows.Forms.ImageList to use when displaying item's icons in the control.
3091
            </summary>
3092
        </member>
3093
        <member name="P:OpenNETCF.Windows.Forms.ListBox2.ItemHeight">
3094
            <summary>
3095
            Gets or sets the item height
3096
            </summary>
3097
        </member>
3098
        <member name="M:OpenNETCF.Windows.Forms.ListItem.#ctor">
3099
            <summary>
3100
            Initializes a new instance of the ListItem class with default values.
3101
            </summary>
3102
        </member>
3103
        <member name="M:OpenNETCF.Windows.Forms.ListItem.#ctor(System.String)">
3104
            <summary>
3105
            Initializes a new instance of the ListItem class with specified item text.
3106
            </summary>
3107
        </member>
3108
        <member name="M:OpenNETCF.Windows.Forms.ListItem.#ctor(System.String,System.Int32)">
3109
            <summary>
3110
            Initializes a new instance of the ListItem class with specified item text and ImageIndex.
3111
            </summary>
3112
        </member>
3113
        <member name="P:OpenNETCF.Windows.Forms.ListItem.Text">
3114
            <summary>
3115
            Gets or sets the text associated with this item.
3116
            </summary>
3117
        </member>
3118
        <member name="P:OpenNETCF.Windows.Forms.ListItem.Font">
3119
            <summary>
3120
            Gets or sets the font associated with this item.
3121
            </summary>
3122
        </member>
3123
        <member name="P:OpenNETCF.Windows.Forms.ListItem.ForeColor">
3124
            <summary>
3125
            Gets or sets the foreground color of the item's text.
3126
            </summary>
3127
        </member>
3128
        <member name="P:OpenNETCF.Windows.Forms.ListItem.ImageList">
3129
            <summary>
3130
            Gets the <see cref="P:OpenNETCF.Windows.Forms.ListItem.ImageList"/> that contains the image displayed with the item.
3131
            </summary>
3132
        </member>
3133
        <member name="P:OpenNETCF.Windows.Forms.ListItem.ImageIndex">
3134
            <summary>
3135
            Gets or sets the ImageIndex associated with this item.
3136
            </summary>
3137
        </member>
3138
        <member name="P:OpenNETCF.Windows.Forms.ListItem.Tag">
3139
            <summary>
3140
            Gets or sets an object that contains data to associate with the item.
3141
            </summary>
3142
        </member>
3143
        <member name="T:OpenNETCF.Windows.Forms.MethodInvoker">
3144
            <summary>
3145
            Represents a delegate that can execute any method in managed code that is
3146
            declared void and takes no parameters.
3147
            </summary>
3148
        </member>
3149
        <member name="T:OpenNETCF.Windows.Forms.MonthCalendar2">
3150
            <summary>
3151
            Extends the <see cref="T:System.Windows.Forms.MonthCalendar"/> control.
3152
            </summary>
3153
        </member>
3154
        <member name="M:OpenNETCF.Windows.Forms.MonthCalendar2.#ctor">
3155
            <summary>
3156
            Initializes a new instance of the <see cref="T:OpenNETCF.Windows.Forms.MonthCalendar2"/> class.
3157
            </summary>
3158
        </member>
3159
        <member name="M:OpenNETCF.Windows.Forms.MonthCalendar2.OnDateSelected(System.Windows.Forms.DateRangeEventArgs)">
3160
            <summary>
3161
            Raises the <see cref="E:OpenNETCF.Windows.Forms.MonthCalendar2.DateSelected"/> event.
3162
            </summary>
3163
            <param name="drevent">A <see cref="T:System.Windows.Forms.DateRangeEventArgs"/> that contains the event data.</param>
3164
        </member>
3165
        <member name="M:OpenNETCF.Windows.Forms.MonthCalendar2.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
3166
            <summary>
3167
            Extends the <see cref="T:System.Windows.Forms.MonthCalendar"/> control.
3168
            </summary>
3169
        </member>
3170
        <member name="E:OpenNETCF.Windows.Forms.MonthCalendar2.DateSelected">
3171
            <summary>
3172
            Occurs when the user makes an explicit date selection using the mouse.
3173
            </summary>
3174
        </member>
3175
        <member name="M:OpenNETCF.Windows.Forms.NativeMethods.SendKeyboardString(System.String)">
3176
            <summary>
3177
            Send a string to the keyboard
3178
            </summary>
3179
            <param name="Keys"></param>
3180
        </member>
3181
        <member name="M:OpenNETCF.Windows.Forms.NativeMethods.SendKeyboardString(System.String,OpenNETCF.Windows.Forms.KeyStateFlags)">
3182
            <summary>
3183
            Send a string to the keyboard
3184
            </summary>
3185
            <param name="Keys"></param>
3186
            <param name="Flags"></param>
3187
        </member>
3188
        <member name="M:OpenNETCF.Windows.Forms.NativeMethods.SendKeyboardString(System.String,OpenNETCF.Windows.Forms.KeyStateFlags,System.IntPtr)">
3189
            <summary>
3190
            Send a string to the keyboard
3191
            </summary>
3192
            <param name="Keys"></param>
3193
            <param name="Flags"></param>
3194
            <param name="hWnd"></param>
3195
        </member>
3196
        <member name="M:OpenNETCF.Windows.Forms.NativeMethods.SendKeyboardKey(System.Byte)">
3197
            <summary>
3198
            Send a key to the keyboard
3199
            </summary>
3200
            <param name="VirtualKey"></param>
3201
        </member>
3202
        <member name="M:OpenNETCF.Windows.Forms.NativeMethods.SendKeyboardKey(System.Byte,System.Boolean)">
3203
            <summary>
3204
            Send a key to the keyboard
3205
            </summary>
3206
            <param name="VirtualKey"></param>
3207
            <param name="Silent"></param>
3208
        </member>
3209
        <member name="M:OpenNETCF.Windows.Forms.NativeMethods.SendKeyboardKey(System.Byte,System.Boolean,OpenNETCF.Windows.Forms.NativeMethods.KeyActionState)">
3210
            <summary>
3211
            Simulates a keystroke that the system can use to generate a WM_KEYUP or WM_KEYDOWN message.
3212
            </summary>
3213
            <param name="VirtualKey">A System.Byte structure that contains a virtual-key code representing the key with which to perform an action.</param>
3214
            <param name="Silent">A System.Boolean structure specifying true if a sound should be generated when the keystroke is simulated; otherwise, false.</param>
3215
            <param name="State">A KeyActionState enumeration value indicating the action that should be performed with the specified virtual-key code.</param>
3216
        </member>
3217
        <member name="T:OpenNETCF.Windows.Forms.NativeMethods.KeyActionState">
3218
            <summary>
3219
            Specifies an action, or state, that may occur, or should
3220
            occur, in relation to a keyboard key.
3221
            </summary>
3222
        </member>
3223
        <member name="F:OpenNETCF.Windows.Forms.NativeMethods.KeyActionState.Down">
3224
            <summary>
3225
            The key is in the down state.
3226
            </summary>
3227
        </member>
3228
        <member name="F:OpenNETCF.Windows.Forms.NativeMethods.KeyActionState.Up">
3229
            <summary>
3230
            The key is in the up state.
3231
            </summary>
3232
        </member>
3233
        <member name="F:OpenNETCF.Windows.Forms.NativeMethods.KeyActionState.Press">
3234
            <summary>
3235
            The key has been pressed down and then released.
3236
            </summary>
3237
        </member>
3238
        <member name="T:OpenNETCF.Windows.Forms.NotifyIcon">
3239
            <summary>
3240
            Specifies a component that creates an icon in the status area
3241
            </summary>
3242
            <remarks>Icons in the status area are short cuts to processes that are running in the background of a computer, such as a virus protection program or a volume control.
3243
            These processes do not come with their own user interfaces.
3244
            The <see cref="T:OpenNETCF.Windows.Forms.NotifyIcon"/> class provides a way to program in this functionality.
3245
            The Icon property defines the icon that appears in the status area.
3246
            Pop-up menus for an icon are addressed with the ContextMenu property.
3247
            The <see cref="P:OpenNETCF.Windows.Forms.NotifyIcon.Text"/> property assigns ToolTip text (Tooltips are not supported by the Pocket PC interface).
3248
            In order for the icon to show up in the status area, the <see cref="P:OpenNETCF.Windows.Forms.NotifyIcon.Visible"/> property must be set to true.</remarks>
3249
        </member>
3250
        <member name="M:OpenNETCF.Windows.Forms.NotifyIcon.#ctor">
3251
            <summary>
3252
            Initializes a new instance of the <see cref="T:OpenNETCF.Windows.Forms.NotifyIcon"/> class.
3253
            </summary>
3254
        </member>
3255
        <member name="M:OpenNETCF.Windows.Forms.NotifyIcon.Dispose(System.Boolean)">
3256
            <summary>
3257
            Releases the unmanaged resources used by the <see cref="T:OpenNETCF.Windows.Forms.NotifyIcon"/> and optionally releases the managed resources.
3258
            </summary>
3259
            <param name="disposing">true to release both managed and unmanaged resources;
3260
            false to release only unmanaged resources.</param>
3261
        </member>
3262
        <member name="P:OpenNETCF.Windows.Forms.NotifyIcon.Icon">
3263
            <summary>
3264
            The <see cref="P:OpenNETCF.Windows.Forms.NotifyIcon.Icon"/> displayed by the NotifyIcon component.
3265
            </summary>
3266
        </member>
3267
        <member name="P:OpenNETCF.Windows.Forms.NotifyIcon.Text">
3268
            <summary>
3269
            Gets or sets the ToolTip text displayed when the mouse hovers over a status area icon.
3270
            </summary>
3271
            <remarks>The Pocket PC interface does not display tooptips.</remarks>
3272
            <value>The ToolTip text displayed when the mouse hovers over a status area icon.</value>
3273
            <exception cref="T:System.ArgumentException">ToolTip text must be less than 64 characters long.</exception>
3274
        </member>
3275
        <member name="P:OpenNETCF.Windows.Forms.NotifyIcon.Visible">
3276
            <summary>
3277
            Gets or sets a value indicating whether the icon is visible in the status notification area of the taskbar.
3278
            </summary>
3279
            <value>true if the icon is visible in the status area; otherwise, false. The default value is false.</value>
3280
            <remarks>Since the default value is false, in order for the icon to show up in the status area, you must set the Visible property to true.</remarks>
3281
        </member>
3282
        <member name="E:OpenNETCF.Windows.Forms.NotifyIcon.Click">
3283
            <summary>
3284
            Occurs when the user clicks the icon in the status area.
3285
            </summary>
3286
        </member>
3287
        <member name="E:OpenNETCF.Windows.Forms.NotifyIcon.DoubleClick">
3288
            <summary>
3289
            Occurs when the user double-clicks the icon in the status notification area of the taskbar.
3290
            </summary>
3291
        </member>
3292
        <member name="E:OpenNETCF.Windows.Forms.NotifyIcon.MouseUp">
3293
            <summary>
3294
            Occurs when the user releases the mouse button while the pointer is over the icon in the status notification area of the taskbar.
3295
            </summary>
3296
        </member>
3297
        <member name="E:OpenNETCF.Windows.Forms.NotifyIcon.MouseDown">
3298
            <summary>
3299
            Occurs when the user presses the mouse button while the pointer is over the icon in the status notification area of the taskbar.
3300
            </summary>
3301
        </member>
3302
        <member name="T:OpenNETCF.Windows.Forms.DrawItemEventHandler">
3303
            <summary>
3304
            Represents the method that will handle the DrawItem.
3305
            </summary>
3306
        </member>
3307
        <member name="M:OpenNETCF.Windows.Forms.PictureBox2.#ctor">
3308
            <summary>
3309
            Default constructor
3310
            </summary>
3311
        </member>
3312
        <member name="F:OpenNETCF.Windows.Forms.PictureBox2.components">
3313
            <summary>
3314
            Required designer variable.
3315
            </summary>
3316
        </member>
3317
        <member name="M:OpenNETCF.Windows.Forms.PictureBox2.Dispose(System.Boolean)">
3318
            <summary>
3319
            Clean up any resources being used.
3320
            </summary>
3321
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
3322
        </member>
3323
        <member name="M:OpenNETCF.Windows.Forms.PictureBox2.InitializeComponent">
3324
            <summary>
3325
            Required method for Designer support - do not modify
3326
            the contents of this method with the code editor.
3327
            </summary>
3328
        </member>
3329
        <member name="P:OpenNETCF.Windows.Forms.PictureBox2.TransparentColor">
3330
            <summary>
3331
            Sets or gets transparent color for an Image. The default color is 255, 0, 255.
3332
            </summary>
3333
        </member>
3334
        <member name="T:OpenNETCF.Windows.Forms.PowerLineStatus">
3335
            <summary>
3336
            Power line status.
3337
            </summary>
3338
            <remarks>Used by <see cref="T:OpenNETCF.Windows.Forms.PowerStatus"/> class.</remarks>
3339
        </member>
3340
        <member name="F:OpenNETCF.Windows.Forms.PowerLineStatus.Offline">
3341
            <summary>
3342
            AC power is offline.
3343
            </summary>
3344
        </member>
3345
        <member name="F:OpenNETCF.Windows.Forms.PowerLineStatus.Online">
3346
            <summary>
3347
            AC power is online.
3348
            </summary>
3349
        </member>
3350
        <member name="F:OpenNETCF.Windows.Forms.PowerLineStatus.BackupPower">
3351
            <summary>
3352
            Unit is on backup power.
3353
            </summary>
3354
        </member>
3355
        <member name="F:OpenNETCF.Windows.Forms.PowerLineStatus.Unknown">
3356
            <summary>
3357
            AC line status is unknown.
3358
            </summary>
3359
        </member>
3360
        <member name="T:OpenNETCF.Windows.Forms.PowerStatus">
3361
            <summary>
3362
            Indicates current system power status information.
3363
            </summary>
3364
        </member>
3365
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.PowerLineStatus">
3366
            <summary>
3367
            AC power status.
3368
            </summary>
3369
            <value>One of the <see cref="P:OpenNETCF.Windows.Forms.PowerStatus.PowerLineStatus"/> values indicating the current system power status.</value>
3370
        </member>
3371
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BatteryChargeStatus">
3372
            <summary>
3373
            Gets the current battery charge status.
3374
            </summary>
3375
            <value>One of the <see cref="P:OpenNETCF.Windows.Forms.PowerStatus.BatteryChargeStatus"/> values indicating the current battery charge level or charging status.</value>
3376
        </member>
3377
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BatteryLifePercent">
3378
            <summary>
3379
            Gets the approximate percentage of full battery time remaining.
3380
            </summary>
3381
            <value>The approximate percentage, from 0 to 100, of full battery time remaining, or 255 if the percentage is unknown.</value>
3382
        </member>
3383
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BatteryLifeRemaining">
3384
            <summary>
3385
            Gets the approximate number of seconds of battery time remaining.
3386
            </summary>
3387
            <value>The approximate number of seconds of battery life remaining, or -1 if the approximate remaining battery life is unknown.</value>
3388
        </member>
3389
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BatteryFullLifeTime">
3390
            <summary>
3391
            Gets the reported full charge lifetime of the primary battery power source in seconds.
3392
            </summary>
3393
            <value>The reported number of seconds of battery life available when the battery is fullly charged, or -1 if the battery life is unknown.</value>
3394
        </member>
3395
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BackupBatteryChargeStatus">
3396
            <summary>
3397
            Gets the backup battery charge status.
3398
            </summary>
3399
        </member>
3400
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BackupBatteryLifePercent">
3401
            <summary>
3402
            Percentage of full backup battery charge remaining. Must be in the range 0 to 100.
3403
            </summary>
3404
        </member>
3405
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BackupBatteryLifeRemaining">
3406
            <summary>
3407
            Number of seconds of backup battery life remaining.
3408
            </summary>
3409
        </member>
3410
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BackupBatteryFullLifeTime">
3411
            <summary>
3412
            Number of seconds of backup battery life when at full charge. Or -1 If unknown.
3413
            </summary>
3414
        </member>
3415
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BatteryVoltage">
3416
            <summary>
3417
            Amount of battery voltage in millivolts (mV).
3418
            </summary>
3419
        </member>
3420
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BatteryCurrent">
3421
            <summary>
3422
            Amount of instantaneous current drain in milliamperes (mA).
3423
            </summary>
3424
        </member>
3425
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BatteryAverageCurrent">
3426
            <summary>
3427
            Short-term average of device current drain (mA).
3428
            </summary>
3429
        </member>
3430
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BatteryAverageInterval">
3431
            <summary>
3432
            Time constant in milliseconds (ms) of integration used in reporting <see cref="P:OpenNETCF.Windows.Forms.PowerStatus.BatteryAverageCurrent"/>.
3433
            </summary>
3434
        </member>
3435
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BatterymAHourComsumed">
3436
            <summary>
3437
            Long-term cumulative average discharge in milliamperes per hour (mAH).
3438
            </summary>
3439
        </member>
3440
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BatteryTemperature">
3441
            <summary>
3442
            Battery temperature in degrees Celsius (°C).
3443
            </summary>
3444
        </member>
3445
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BackupBatteryVoltage">
3446
            <summary>
3447
            Backup battery voltage in mV.
3448
            </summary>
3449
        </member>
3450
        <member name="P:OpenNETCF.Windows.Forms.PowerStatus.BatteryChemistry">
3451
            <summary>
3452
            Chemistry of the devices main battery.
3453
            </summary>
3454
        </member>
3455
        <member name="T:OpenNETCF.Windows.Forms.ProgressBar2">
3456
            <summary>
3457
            Represents a progress bar control similar to the windows progress bar control.
3458
            </summary>
3459
        </member>
3460
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.defaultSize">
3461
            <summary>
3462
            The default size of the control
3463
            </summary>
3464
        </member>
3465
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.orientation">
3466
            <summary>
3467
            The orientation of the control
3468
            </summary>
3469
        </member>
3470
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.gradientStyle">
3471
            <summary>
3472
            The Gradient mode that should be used
3473
            </summary>
3474
        </member>
3475
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.drawStyle">
3476
            <summary>
3477
            The draw style for the progress bar
3478
            </summary>
3479
        </member>
3480
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.borderStyle">
3481
            <summary>
3482
            Border style of the control
3483
            </summary>
3484
        </member>
3485
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.maximum">
3486
            <summary>
3487
            The maximum value of the progress bar
3488
            </summary>
3489
        </member>
3490
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.minimum">
3491
            <summary>
3492
            The minimum value of the progress bar
3493
            </summary>
3494
        </member>
3495
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.currentValue">
3496
            <summary>
3497
            The current value of the progress bar
3498
            </summary>
3499
        </member>
3500
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.step">
3501
            <summary>
3502
            Step to use when incrementing the value
3503
            </summary>
3504
        </member>
3505
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.barColor">
3506
            <summary>
3507
            The color of the bar
3508
            </summary>
3509
        </member>
3510
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.barGradientColor">
3511
            <summary>
3512
            The gradient color to use
3513
            </summary>
3514
        </member>
3515
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.borderColor">
3516
            <summary>
3517
            The border color of the control
3518
            </summary>
3519
        </member>
3520
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.showValueText">
3521
            <summary>
3522
            Whether to show the text or not
3523
            </summary>
3524
            <remarks>Shows the text in the control.</remarks>
3525
        </member>
3526
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.showPercentValueText">
3527
            <summary>
3528
            Whether to show the percentage or not
3529
            </summary>
3530
        </member>
3531
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.onePixBar">
3532
            <summary>
3533
            The on pixel bitmap that is cached with the gradient so it doesn't have to be regenerated all the time.  The image will be streched depending on the value.
3534
            </summary>
3535
        </member>
3536
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.borderPadding">
3537
            <summary>
3538
            The padding from the border of the control to the progress bar
3539
            </summary>
3540
        </member>
3541
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.offscreenBM">
3542
            <summary>
3543
            The offscreen bitmap to draw on
3544
            </summary>
3545
        </member>
3546
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.offscreenGX">
3547
            <summary>
3548
            The offscreen graphics component
3549
            </summary>
3550
        </member>
3551
        <member name="M:OpenNETCF.Windows.Forms.ProgressBar2.#ctor">
3552
            <summary>
3553
            Default constructor
3554
            </summary>
3555
        </member>
3556
        <member name="M:OpenNETCF.Windows.Forms.ProgressBar2.PerformStep">
3557
            <summary>
3558
            Advances the current position of the progress bar by the amount of the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Step">Step</see> property.
3559
            </summary>
3560
            <remarks>
3561
            The PerformStep method increments the value of the progress bar by the amount specified by the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Step">Step</see> property. You can use the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Step">Step</see> property to specify the amount that each completed task in an operation changes the value of the progress bar. For example, if you are copying a group of files, you might want to set the value of the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Step">Step</see> property to 1 and the value of the Maximum property to the total number of files to copy. When each file is copied, you can call the PerformStep method to increment the progress bar by the value of the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Step">Step</see> property. If you want to have more flexible control of the value of the progress bar, you can use the <see cref="M:OpenNETCF.Windows.Forms.ProgressBar2.Increment(System.Int32)">Increment</see> method or set the value of the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Value">Value</see> property directly.
3562
            The <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Value">Value</see> property specifies the current position of the ProgressBar. If, after calling the PerformStep method, the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Value">Value</see> property is greater than the value of the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Maximum">Maximum</see> property, the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Value">Value</see> property remains at the value of the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Maximum">Maximum</see> property. If, after calling the PerformStep method with a negative value specified in the value parameter, the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Value">Value</see> property is less than the value of the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Minimum">Value</see> property, the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Value">Value</see> property remains at the value of the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Minimum">Minimum</see> property.
3563
            </remarks>
3564
        </member>
3565
        <member name="M:OpenNETCF.Windows.Forms.ProgressBar2.Increment(System.Int32)">
3566
            <summary>
3567
            Advances the current position of the progress bar by the specified amount.
3568
            </summary>
3569
            <remarks>The Increment method enables you to increment the value of the progress bar by a specific amount. This method of incrementing the progress bar is similar to using the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Step">Step</see> property with the <see cref="M:OpenNETCF.Windows.Forms.ProgressBar2.PerformStep">PerformStep</see> method. The <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Value">Value</see> property specifies the current position of the ProgressBar. If, after calling the Increment method, the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Value">Value</see> property is greater than the value of the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Maximum">Maximum</see> property, the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Value">Value</see> property remains at the value of the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Maximum">Maximum</see> property. If, after calling the Increment method with a negative value specified in the value parameter, the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Value">Value</see> property is less than the value of the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Minimum">Minimum</see> property, the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Value">Value</see> property remains at the value of the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Minimum">Minimum</see> property.</remarks>
3570
            <param name="value">The amount by which to increment the progress bar's current position.</param>
3571
        </member>
3572
        <member name="M:OpenNETCF.Windows.Forms.ProgressBar2.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
3573
            <summary>
3574
            Raises the PaintBackground event. (Inherited from <see cref="T:System.Windows.Forms.Control">Control</see>.)
3575
            </summary>
3576
            <param name="e">A PaintEventArgs that contains the event data. </param>
3577
        </member>
3578
        <member name="M:OpenNETCF.Windows.Forms.ProgressBar2.OnPaint(System.Windows.Forms.PaintEventArgs)">
3579
            <summary>
3580
            Raises the Paint event. (Inherited from <see cref="T:System.Windows.Forms.Control">Control</see>.)
3581
            </summary>
3582
            <param name="e">A PaintEventArgs that contains the event data. </param>
3583
        </member>
3584
        <member name="M:OpenNETCF.Windows.Forms.ProgressBar2.OnResize(System.EventArgs)">
3585
            <summary>
3586
            Raises the Resize event. (Inherited from <see cref="T:System.Windows.Forms.Control">Control</see>.)
3587
            </summary>
3588
            <param name="e"></param>
3589
        </member>
3590
        <member name="M:OpenNETCF.Windows.Forms.ProgressBar2.OnParentChanged(System.EventArgs)">
3591
            <summary>
3592
            Raises the ParentChanged event. (Inherited from <see cref="T:System.Windows.Forms.Control">Control</see>.)
3593
            </summary>
3594
            <param name="e"></param>
3595
        </member>
3596
        <member name="F:OpenNETCF.Windows.Forms.ProgressBar2.components">
3597
            <summary>
3598
            Required designer variable.
3599
            </summary>
3600
        </member>
3601
        <member name="M:OpenNETCF.Windows.Forms.ProgressBar2.Dispose(System.Boolean)">
3602
            <summary>
3603
            Clean up any resources being used.
3604
            </summary>
3605
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
3606
        </member>
3607
        <member name="M:OpenNETCF.Windows.Forms.ProgressBar2.InitializeComponent">
3608
            <summary>
3609
            Required method for Designer support - do not modify
3610
            the contents of this method with the code editor.
3611
            </summary>
3612
        </member>
3613
        <member name="M:OpenNETCF.Windows.Forms.ProgressBar2.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
3614
            <summary>
3615
            Represents a progress bar control similar to the windows progress bar control.
3616
            </summary>
3617
        </member>
3618
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.ShowPercentValueText">
3619
            <summary>
3620
            Gets or sets whether the current percentage of the progress bar should be shown.
3621
            </summary>
3622
        </member>
3623
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.ShowValueText">
3624
            <summary>
3625
            Gets or sets whether the current value of the progress bar should be shown.
3626
            </summary>
3627
        </member>
3628
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.BarGradientColor">
3629
            <summary>
3630
            Gets or sets the gradient color of the progress bar
3631
            </summary>
3632
            <remarks>Only effective when DrawStyle is set to Gradient</remarks>
3633
        </member>
3634
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.BarColor">
3635
            <summary>
3636
            Gets or sets the color of the progress bar
3637
            </summary>
3638
            <value>The <see cref="T:System.Drawing.Color">Color</see> to set the bar of the ProgressBar2.</value>
3639
        </member>
3640
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.DrawStyle">
3641
            <summary>
3642
            Gets or sets the style of the progress bar.
3643
            </summary>
3644
        </member>
3645
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.GradientStyle">
3646
            <summary>
3647
            Gets or sets the gradient draw mode. Two values are either Normal which is gradient from left to right
3648
            and Middle which starts from the middle out
3649
            </summary>
3650
        </member>
3651
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.BorderStyle">
3652
            <summary>
3653
            Gets or sets the border style of the control
3654
            </summary>
3655
        </member>
3656
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.BorderColor">
3657
            <summary>
3658
            Gets or sets the color of the control border
3659
            </summary>
3660
        </member>
3661
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.BorderPadding">
3662
            <summary>
3663
            Gets or sets the space between the progress bar and the control border.
3664
            </summary>
3665
        </member>
3666
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.Step">
3667
            <summary>
3668
            Gets or sets the amount by which a call to the <see cref="M:OpenNETCF.Windows.Forms.ProgressBar2.PerformStep">PerformStep</see> method increases the current position of the progress bar.
3669
            </summary>
3670
            <remarks>You can use the Step property to specify the amount that each completed task in an operation changes the value of the progress bar. For example, if you are copying a group of files, you might want to set the value of the Step property to 1 and the value of the Maximum property to the total number of files to copy. When each file is copied, you can call the <see cref="M:OpenNETCF.Windows.Forms.ProgressBar2.PerformStep">PerformStep</see> method to increment the progress bar by the value of the Step property. If you want to have more flexible control of the value of the progress bar, you can use the <see cref="M:OpenNETCF.Windows.Forms.ProgressBar2.Increment(System.Int32)">Increment</see> method or set the value of the <see cref="P:OpenNETCF.Windows.Forms.ProgressBar2.Value">Value</see> property directly.</remarks>
3671
            <value>The amount by which to increment the progress bar with each call to the <see cref="M:OpenNETCF.Windows.Forms.ProgressBar2.PerformStep">PerformStep</see> method. The default is 10.</value>
3672
        </member>
3673
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.Value">
3674
            <summary>
3675
            Gets or sets the current position of the progress bar.
3676
            </summary>
3677
        </member>
3678
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.Minimum">
3679
            <summary>
3680
            Gets or sets the minimum value of the range of the control.
3681
            </summary>
3682
        </member>
3683
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.Maximum">
3684
            <summary>
3685
            Gets or sets the maximum value of the range of the control.
3686
            </summary>
3687
        </member>
3688
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.BackColor">
3689
            <summary>
3690
            Overridden. See <see cref="P:System.Windows.Forms.Control.BackColor">Control.BackColor</see>.
3691
            </summary>
3692
        </member>
3693
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.Text">
3694
            <summary>
3695
            Overridden. See <see cref="P:System.Windows.Forms.Control.Text">Control.Text</see>.
3696
            </summary>
3697
        </member>
3698
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.ForeColor">
3699
            <summary>
3700
            Overridden. See <see cref="P:System.Windows.Forms.Control.ForeColor">Control.ForeColor</see>.
3701
            </summary>
3702
        </member>
3703
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.Font">
3704
            <summary>
3705
            Overridden. See <see cref="P:System.Windows.Forms.Control.Font">Control.Font</see>.
3706
            </summary>
3707
        </member>
3708
        <member name="P:OpenNETCF.Windows.Forms.ProgressBar2.DesignMode">
3709
            <summary>
3710
            Gets whether the control is in design mode
3711
            </summary>
3712
        </member>
3713
        <member name="T:OpenNETCF.Windows.Forms.Properties.Resources">
3714
            <summary>
3715
              A strongly-typed resource class, for looking up localized strings, etc.
3716
            </summary>
3717
        </member>
3718
        <member name="P:OpenNETCF.Windows.Forms.Properties.Resources.ResourceManager">
3719
            <summary>
3720
              Returns the cached ResourceManager instance used by this class.
3721
            </summary>
3722
        </member>
3723
        <member name="P:OpenNETCF.Windows.Forms.Properties.Resources.Culture">
3724
            <summary>
3725
              Overrides the current thread's CurrentUICulture property for all
3726
              resource lookups using this strongly typed resource class.
3727
            </summary>
3728
        </member>
3729
        <member name="T:OpenNETCF.Windows.Forms.HighWarnHandler">
3730
            <summary>
3731
            Used when a gauge value exceeds its high warn level.
3732
            </summary>
3733
        </member>
3734
        <member name="T:OpenNETCF.Windows.Forms.LowWarnHandler">
3735
            <summary>
3736
            Used when a gauge value falls below its low warn level.
3737
            </summary>
3738
        </member>
3739
        <member name="T:OpenNETCF.Windows.Forms.MaxValueHandler">
3740
            <summary>
3741
            Used when a gauge value exceeds its max value.
3742
            </summary>
3743
        </member>
3744
        <member name="T:OpenNETCF.Windows.Forms.MinValueHandler">
3745
            <summary>
3746
            Used when a gauge value falls below its low value.
3747
            </summary>
3748
        </member>
3749
        <member name="T:OpenNETCF.Windows.Forms.RoundGauge">
3750
            <summary>
3751
            A representation of a dial gauge with indicator lamps
3752
            </summary>
3753
        </member>
3754
        <member name="M:OpenNETCF.Windows.Forms.RoundGauge.#ctor">
3755
            <summary>
3756
            Create a RoundGauge object
3757
            </summary>
3758
        </member>
3759
        <member name="M:OpenNETCF.Windows.Forms.RoundGauge.Refresh">
3760
            <summary>
3761
            Refreshes the control
3762
            </summary>
3763
        </member>
3764
        <member name="M:OpenNETCF.Windows.Forms.RoundGauge.BeginUpdate">
3765
            <summary>
3766
            Suspends control painting
3767
            </summary>
3768
        </member>
3769
        <member name="M:OpenNETCF.Windows.Forms.RoundGauge.EndUpdate">
3770
            <summary>
3771
            Resumes control painting
3772
            </summary>
3773
        </member>
3774
        <member name="M:OpenNETCF.Windows.Forms.RoundGauge.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
3775
            <summary>
3776
            OnPaintBackground
3777
            </summary>
3778
            <param name="e"></param>
3779
        </member>
3780
        <member name="M:OpenNETCF.Windows.Forms.RoundGauge.OnPaint(System.Windows.Forms.PaintEventArgs)">
3781
            <summary>
3782
            OnPaint
3783
            </summary>
3784
            <param name="e">PaintEventArgs</param>
3785
        </member>
3786
        <member name="M:OpenNETCF.Windows.Forms.RoundGauge.OnResize(System.EventArgs)">
3787
            <summary>
3788
            Fired when the RoundGauge is resized
3789
            </summary>
3790
            <param name="e"></param>
3791
        </member>
3792
        <member name="M:OpenNETCF.Windows.Forms.RoundGauge.Dispose(System.Boolean)">
3793
            <summary>
3794
            Dispose of the current object instance
3795
            </summary>
3796
            <param name="disposing"></param>
3797
        </member>
3798
        <member name="M:OpenNETCF.Windows.Forms.RoundGauge.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
3799
            <summary>
3800
            A representation of a dial gauge with indicator lamps
3801
            </summary>
3802
        </member>
3803
        <member name="E:OpenNETCF.Windows.Forms.RoundGauge.HighWarn">
3804
            <summary>
3805
            Fires when the RoundGauge Value exceeds the HighWarnValue
3806
            <seealso cref="P:OpenNETCF.Windows.Forms.RoundGauge.Value"/>
3807
            <seealso cref="P:OpenNETCF.Windows.Forms.RoundGauge.HighWarnValue"/>
3808
            </summary>
3809
        </member>
3810
        <member name="E:OpenNETCF.Windows.Forms.RoundGauge.LowWarn">
3811
            <summary>
3812
            Fires when the RoundGauge Value falls below the LowWarnValue
3813
            <seealso cref="P:OpenNETCF.Windows.Forms.RoundGauge.Value"/>
3814
            <seealso cref="P:OpenNETCF.Windows.Forms.RoundGauge.LowWarnValue"/>
3815
            </summary>
3816
        </member>
3817
        <member name="E:OpenNETCF.Windows.Forms.RoundGauge.GaugeMax">
3818
            <summary>
3819
            Fires when the RoundGauge Value exceeds the MaxValue
3820
            <seealso cref="P:OpenNETCF.Windows.Forms.RoundGauge.Value"/>
3821
            <seealso cref="P:OpenNETCF.Windows.Forms.RoundGauge.MaxValue"/>
3822
            </summary>
3823
        </member>
3824
        <member name="E:OpenNETCF.Windows.Forms.RoundGauge.GaugeMin">
3825
            <summary>
3826
            Fires when the RoundGauge Value falls below the MinValue
3827
            <seealso cref="P:OpenNETCF.Windows.Forms.RoundGauge.Value"/>
3828
            <seealso cref="P:OpenNETCF.Windows.Forms.RoundGauge.MinValue"/>
3829
            </summary>
3830
        </member>
3831
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.Lamps">
3832
            <summary>
3833
            The RoundGauge's collection of Lamps
3834
            <seealso cref="P:OpenNETCF.Windows.Forms.RoundGauge.Lamps"/>
3835
            <seealso cref="T:OpenNETCF.Windows.Forms.Lamp"/>
3836
            </summary>
3837
        </member>
3838
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.NeedleWidth">
3839
            <summary>
3840
            Specifies the width of the gauge needle base.
3841
            </summary>
3842
        </member>
3843
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.NeedleColor">
3844
            <summary>
3845
            The color of the Guage's needle
3846
            </summary>
3847
        </member>
3848
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.Diameter">
3849
            <summary>
3850
            Dimaeter of the RoundGauge face
3851
            </summary>
3852
        </member>
3853
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.Value">
3854
            <summary>
3855
            Value that the RoundGauge needle points to
3856
            </summary>
3857
        </member>
3858
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.ValueArc">
3859
            <summary>
3860
            The arc over which value ticks are drawn (in degrees)
3861
            </summary>
3862
        </member>
3863
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.TickLabelInterval">
3864
            <summary>
3865
            Specifies the number of ticks between TickLabels.
3866
            </summary>
3867
        </member>
3868
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.ShowTickLabels">
3869
            <summary>
3870
            Specifies whether or not TickLabels will be displayed.
3871
            </summary>
3872
        </member>
3873
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.LineBezelSpacing">
3874
            <summary>
3875
            Specifies the gap between the ValueArc and the gauge bezel.
3876
            </summary>
3877
        </member>
3878
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.ArcWidth">
3879
            <summary>
3880
            Specifies the thickness of the ValueArc line.
3881
            </summary>
3882
        </member>
3883
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.TickInterval">
3884
            <summary>
3885
            Specifies the interval, based on Value, between individual Tick lines.
3886
            </summary>
3887
        </member>
3888
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.TickLabelPadding">
3889
            <summary>
3890
            Specifies the gap between the Tick lines and the TickLabels.
3891
            </summary>
3892
        </member>
3893
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.TickLength">
3894
            <summary>
3895
            Specifies the length of standard Tick lines.  Tick lines with a label are twice this value.
3896
            </summary>
3897
        </member>
3898
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.MinValue">
3899
            <summary>
3900
            Specifies the minimum value displayed on the gauge.
3901
            </summary>
3902
        </member>
3903
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.HighWarnValue">
3904
            <summary>
3905
            Specifies the lower limit of the HighWarn region.
3906
            </summary>
3907
        </member>
3908
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.LowWarnValue">
3909
            <summary>
3910
            Specifies the upper limit of the LowWarn region.
3911
            </summary>
3912
        </member>
3913
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.MaxValue">
3914
            <summary>
3915
            Specifies the maximum value displayed on the gauge.
3916
            </summary>
3917
        </member>
3918
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.ValueDigits">
3919
            <summary>
3920
            Specifies the number of digits to display in the value label.  0 will hide the value label.  -1 sets it to autosize.
3921
            </summary>
3922
        </member>
3923
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.BezelWidth">
3924
            <summary>
3925
            Specifies the thickness of the gauge bezel.
3926
            </summary>
3927
        </member>
3928
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.BezelColor">
3929
            <summary>
3930
            Specifies the Color of the gauge bezel.
3931
            </summary>
3932
        </member>
3933
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.LineColor">
3934
            <summary>
3935
            Specifies the Color of Ticks and the ValueArc between the LowWarn and HighWarn regions.
3936
            </summary>
3937
        </member>
3938
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.LowWarnColor">
3939
            <summary>
3940
            Specifies the Color of the ValueArc in the LowWarn region.
3941
            </summary>
3942
        </member>
3943
        <member name="P:OpenNETCF.Windows.Forms.RoundGauge.HighWarnColor">
3944
            <summary>
3945
            Specifies the Color of the ValueArc in the HighWarn region.
3946
            </summary>
3947
        </member>
3948
        <member name="T:OpenNETCF.Windows.Forms.LampPosition">
3949
            <summary>
3950
            Position of Lamp relative to RoundGauge.
3951
            <seealso cref="T:OpenNETCF.Windows.Forms.Lamp"/>
3952
            <seealso cref="T:OpenNETCF.Windows.Forms.RoundGauge"/>
3953
            </summary>
3954
        </member>
3955
        <member name="F:OpenNETCF.Windows.Forms.LampPosition.UpperLeft">
3956
            <summary>
3957
            Upper Left
3958
            </summary>
3959
        </member>
3960
        <member name="F:OpenNETCF.Windows.Forms.LampPosition.UpperRight">
3961
            <summary>
3962
            Upper Right
3963
            </summary>
3964
        </member>
3965
        <member name="F:OpenNETCF.Windows.Forms.LampPosition.LowerLeft">
3966
            <summary>
3967
            Lower Left
3968
            </summary>
3969
        </member>
3970
        <member name="F:OpenNETCF.Windows.Forms.LampPosition.LowerRight">
3971
            <summary>
3972
            Lower Right
3973
            </summary>
3974
        </member>
3975
        <member name="T:OpenNETCF.Windows.Forms.Lamp">
3976
            <summary>
3977
            Indicator Lamp class
3978
            </summary>
3979
            <seealso cref="T:OpenNETCF.Windows.Forms.RoundGauge"/>
3980
        </member>
3981
        <member name="M:OpenNETCF.Windows.Forms.Lamp.#ctor">
3982
            <summary>
3983
            Lamp constructor
3984
            </summary>
3985
        </member>
3986
        <member name="P:OpenNETCF.Windows.Forms.Lamp.Visible">
3987
            <summary>
3988
            Sets whether the lamp is Visible or not
3989
            </summary>
3990
        </member>
3991
        <member name="P:OpenNETCF.Windows.Forms.Lamp.Position">
3992
            <summary>
3993
            The position of the lamp relative to its parent RoundGauge
3994
            <seealso cref="T:OpenNETCF.Windows.Forms.RoundGauge"/>
3995
            </summary>
3996
        </member>
3997
        <member name="P:OpenNETCF.Windows.Forms.Lamp.State">
3998
            <summary>
3999
            The state (on or off) of the Lamp
4000
            </summary>
4001
        </member>
4002
        <member name="P:OpenNETCF.Windows.Forms.Lamp.OnColor">
4003
            <summary>
4004
            The lamp's color when its State is <b>true</b>
4005
            <seealso cref="P:OpenNETCF.Windows.Forms.Lamp.State"/>
4006
            </summary>
4007
        </member>
4008
        <member name="P:OpenNETCF.Windows.Forms.Lamp.OffColor">
4009
            <summary>
4010
            The lamp's color when its State is <b>false</b>
4011
            <seealso cref="P:OpenNETCF.Windows.Forms.Lamp.State"/>
4012
            </summary>
4013
        </member>
4014
        <member name="P:OpenNETCF.Windows.Forms.Lamp.BezelColor">
4015
            <summary>
4016
            The border (bezel) color of the lamp
4017
            </summary>
4018
        </member>
4019
        <member name="P:OpenNETCF.Windows.Forms.Lamp.BezelWidth">
4020
            <summary>
4021
            The border (bezel) width of the lamp
4022
            </summary>
4023
        </member>
4024
        <member name="T:OpenNETCF.Windows.Forms.Lamps">
4025
            <summary>
4026
            A Collection of Lamp classes
4027
            </summary>
4028
            <seealso cref="T:OpenNETCF.Windows.Forms.Lamp"/>
4029
        </member>
4030
        <member name="M:OpenNETCF.Windows.Forms.Lamps.Add(OpenNETCF.Windows.Forms.Lamp)">
4031
            <summary>
4032
            Adds a Lamp to the collection
4033
            <seealso cref="T:OpenNETCF.Windows.Forms.Lamp"/>
4034
            </summary>
4035
            <param name="newLamp"></param>
4036
        </member>
4037
        <member name="P:OpenNETCF.Windows.Forms.Lamps.Item(System.Int32)">
4038
            <summary>
4039
            Retrieves the Lamp at a specific <b>index</b>
4040
            <seealso cref="T:OpenNETCF.Windows.Forms.Lamp"/>
4041
            </summary>
4042
        </member>
4043
        <member name="T:OpenNETCF.Windows.Forms.SendKeys">
4044
            <summary>
4045
            Provides methods for sending keystrokes to an application.
4046
            </summary>
4047
            <remarks>
4048
            A quote from "http://msdn2.microsoft.com/library/k3w7761b.aspx":
4049
            Each key is represented by one or more characters. To specify a single keyboard character,
4050
            use the character itself. For example, to represent the letter A, pass in the string "A" to
4051
            the method. To represent more than one character, append each additional character to the
4052
            one preceding it. To represent the letters A, B, and C, specify the parameter as "ABC".
4053
 
4054
            The plus sign (+), caret (^), percent sign (%), tilde (~), and parentheses () have special
4055
            meanings to SendKeys. To specify one of these characters, enclose it within braces ({}).
4056
            For example, to specify the plus sign, use "{+}". To specify brace characters, use "{{}"
4057
            and "{}}". Brackets ([ ]) have no special meaning to SendKeys, but you must enclose them
4058
            in braces.
4059
 
4060
            To specify that any combination of SHIFT (+), CTRL (^), and ALT (%) should be held down while several
4061
            other keys are pressed, enclose the code for those keys in parentheses. For example, to
4062
            specify to hold down SHIFT while E and C are pressed, use "+(EC)". To specify to hold down
4063
            SHIFT while E is pressed, followed by C without SHIFT, use "+EC".
4064
 
4065
            To specify repeating keys, use the form {key number}. You must put a space between key
4066
            and number. For example, {LEFT 42} means press the LEFT ARROW key 42 times; {h 10}
4067
            means press H 10 times.
4068
            </remarks>
4069
        </member>
4070
        <member name="M:OpenNETCF.Windows.Forms.SendKeys.Send(System.String)">
4071
            <summary>
4072
            Sends keystrokes to the active application.
4073
            </summary>
4074
            <param name="keys">The string of keystrokes to send.</param>
4075
        </member>
4076
        <member name="T:OpenNETCF.Windows.Forms.Signature">
4077
            <summary>
4078
            Captures a signature from the user.
4079
            Can be saved to a control specific byte array or a Bitmap.
4080
            </summary>
4081
        </member>
4082
        <member name="M:OpenNETCF.Windows.Forms.Signature.#ctor">
4083
            <summary>
4084
            Constructor, creates the graphics object
4085
            </summary>
4086
        </member>
4087
        <member name="M:OpenNETCF.Windows.Forms.Signature.ToBitmap">
4088
            <summary>
4089
            Converts the signature to a bitmap.
4090
            </summary>
4091
            <returns></returns>
4092
        </member>
4093
        <member name="M:OpenNETCF.Windows.Forms.Signature.GetSignatureEx">
4094
            <summary>
4095
            Returns the signature data consisting of points (x,y) coordinates
4096
            </summary>
4097
            <returns>Signature data</returns>
4098
        </member>
4099
        <member name="M:OpenNETCF.Windows.Forms.Signature.LoadSignatureEx(System.Byte[])">
4100
            <summary>
4101
            Loads a signature from the given bytes consisting of points (x,y) coordinates
4102
            </summary>
4103
            <param name="b">Signature data previously serialized with e.g. GetSignatureEx</param>
4104
        </member>
4105
        <member name="M:OpenNETCF.Windows.Forms.Signature.Clear">
4106
            <summary>
4107
            Clears the signature area.
4108
            </summary>
4109
        </member>
4110
        <member name="M:OpenNETCF.Windows.Forms.Signature.Dispose(System.Boolean)">
4111
            <summary>
4112
            Releases the unmanaged resources used by the System.Windows.Forms.Control
4113
            and its child controls and optionally releases the managed resources.
4114
            </summary>
4115
            <param name="disposing">
4116
            true to release both managed and unmanaged resources; false to release only
4117
            unmanaged resources.
4118
            </param>
4119
        </member>
4120
        <member name="M:OpenNETCF.Windows.Forms.Signature.DrawBorder(System.Drawing.Graphics)">
4121
            <summary>
4122
            Draw the border of the signature box if it is required.
4123
            </summary>
4124
        </member>
4125
        <member name="M:OpenNETCF.Windows.Forms.Signature.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
4126
            <summary>
4127
            Raises the MouseDown event.
4128
            </summary>
4129
            <param name="e"></param>
4130
        </member>
4131
        <member name="M:OpenNETCF.Windows.Forms.Signature.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
4132
            <summary>
4133
            Raises the MouseMove event.
4134
            </summary>
4135
            <param name="e"></param>
4136
        </member>
4137
        <member name="M:OpenNETCF.Windows.Forms.Signature.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
4138
            <summary>
4139
            Raises the MouseUp event.
4140
            </summary>
4141
            <param name="e"></param>
4142
        </member>
4143
        <member name="M:OpenNETCF.Windows.Forms.Signature.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
4144
            <summary>
4145
            Raises the PaintBackground event.
4146
            </summary>
4147
            <param name="e"></param>
4148
        </member>
4149
        <member name="M:OpenNETCF.Windows.Forms.Signature.OnPaint(System.Windows.Forms.PaintEventArgs)">
4150
            <summary>
4151
 
4152
            </summary>
4153
            <param name="e"></param>
4154
        </member>
4155
        <member name="M:OpenNETCF.Windows.Forms.Signature.OnResize(System.EventArgs)">
4156
            <summary>
4157
            Raises the Resize event.
4158
            </summary>
4159
            <param name="e"></param>
4160
        </member>
4161
        <member name="P:OpenNETCF.Windows.Forms.Signature.BorderColor">
4162
            <summary>
4163
            Gets or sets the color for the border.
4164
            </summary>
4165
        </member>
4166
        <member name="P:OpenNETCF.Windows.Forms.Signature.BackgroundImage">
4167
            <summary>
4168
            Gets or sets the background image to use when painting
4169
            </summary>
4170
        </member>
4171
        <member name="P:OpenNETCF.Windows.Forms.Signature.BorderStyle">
4172
            <summary>
4173
            Gets or sets the <see cref="T:System.Windows.Forms.BorderStyle"/> of the control.
4174
            </summary>
4175
        </member>
4176
        <member name="P:OpenNETCF.Windows.Forms.Signature.ForeColor">
4177
            <summary>
4178
            Gets or sets the <see cref="P:OpenNETCF.Windows.Forms.Signature.ForeColor"/> of the control.
4179
            </summary>
4180
        </member>
4181
        <member name="P:OpenNETCF.Windows.Forms.Signature.PenWidth">
4182
            <summary>
4183
            Gets or sets the width of the signature draw pen
4184
            </summary>
4185
        </member>
4186
        <member name="P:OpenNETCF.Windows.Forms.Signature.DesignMode">
4187
            <summary>
4188
            Gets a value indicating whether a control is being used on a design surface.
4189
            </summary>
4190
        </member>
4191
        <member name="T:OpenNETCF.Windows.Forms.Point2">
4192
            <summary>
4193
            Internal class to facilitate pen width control
4194
            </summary>
4195
        </member>
4196
        <member name="T:OpenNETCF.Windows.Forms.SmartList">
4197
            <summary>
4198
            Represents a Owner-drawn list control, which displays a collection of items which can be filtered using key press.
4199
            </summary>
4200
        </member>
4201
        <member name="M:OpenNETCF.Windows.Forms.SmartList.#ctor">
4202
            <summary>
4203
            Default constructor
4204
            </summary>
4205
        </member>
4206
        <member name="M:OpenNETCF.Windows.Forms.SmartList.OnFilteringStarted(System.EventArgs)">
4207
            <summary>
4208
            Raises the FilteringStarted event.
4209
            </summary>
4210
            <param name="e"> An System.EventArgs that contains the event data.</param>
4211
        </member>
4212
        <member name="M:OpenNETCF.Windows.Forms.SmartList.OnFilteringComplete(System.EventArgs)">
4213
            <summary>
4214
            Raises the FilteringStarted event.
4215
            </summary>
4216
            <param name="e">An System.EventArgs that contains the event data.</param>
4217
        </member>
4218
        <member name="M:OpenNETCF.Windows.Forms.SmartList.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
4219
            <summary>
4220
            Represents a Owner-drawn list control, which displays a collection of items which can be filtered using key press.
4221
            </summary>
4222
        </member>
4223
        <member name="E:OpenNETCF.Windows.Forms.SmartList.FilteringStarted">
4224
            <summary>
4225
            Occurs when the filtering is started.
4226
            </summary>
4227
        </member>
4228
        <member name="E:OpenNETCF.Windows.Forms.SmartList.FilteringComplete">
4229
            <summary>
4230
            Occurs when the filtering is completed.
4231
            </summary>
4232
        </member>
4233
        <member name="P:OpenNETCF.Windows.Forms.SmartList.Items">
4234
            <summary>
4235
            Gets the items of the SmartList .
4236
            </summary>
4237
        </member>
4238
        <member name="P:OpenNETCF.Windows.Forms.SmartList.BaseItems">
4239
            <summary>
4240
            Gets a items collection.
4241
            </summary>
4242
        </member>
4243
        <member name="P:OpenNETCF.Windows.Forms.SmartList.FullKeyboard">
4244
            <summary>
4245
            Sets or gets the value indicating usage of QWERTY keyboard
4246
            </summary>
4247
        </member>
4248
        <member name="P:OpenNETCF.Windows.Forms.SmartList.AutoNumbering">
4249
            <summary>
4250
            Sets or gets AutoNumbering.
4251
            </summary>
4252
        </member>
4253
        <member name="P:OpenNETCF.Windows.Forms.SmartList.KeyMappings">
4254
            <summary>
4255
            Gets or sets key mappings for filtering.
4256
            </summary>
4257
        </member>
4258
        <member name="P:OpenNETCF.Windows.Forms.SmartList.EvenItemColor">
4259
            <summary>
4260
            Gets or sets the background color of the even item.
4261
            </summary>
4262
        </member>
4263
        <member name="P:OpenNETCF.Windows.Forms.SmartList.LineColor">
4264
            <summary>
4265
            Gets or sets the color of the lines.
4266
            </summary>
4267
        </member>
4268
        <member name="P:OpenNETCF.Windows.Forms.SmartList.ShowLines">
4269
            <summary>
4270
            Gets or sets text wrapping in the list items
4271
            </summary>
4272
        </member>
4273
        <member name="P:OpenNETCF.Windows.Forms.SmartList.WrapText">
4274
            <summary>
4275
            Gets or sets text wrapping in the list items
4276
            </summary>
4277
        </member>
4278
        <member name="P:OpenNETCF.Windows.Forms.SmartList.ImageList">
4279
            <summary>
4280
            Gets or sets the System.Windows.Forms.ImageList to use when displaying item's icons in the control.
4281
            </summary>
4282
        </member>
4283
        <member name="P:OpenNETCF.Windows.Forms.SmartList.ItemsMatchedCount">
4284
            <summary>
4285
            Gets a number of items found as a result of filtering.
4286
            </summary>
4287
        </member>
4288
        <member name="P:OpenNETCF.Windows.Forms.SmartList.ItemHeight">
4289
            <summary>
4290
            Gets or sets the item height
4291
            </summary>
4292
        </member>
4293
        <member name="T:OpenNETCF.Windows.Forms.SmartList.ItemCollection">
4294
            <summary>
4295
            Represents the collection of items in a SmartList .
4296
            </summary>
4297
        </member>
4298
        <member name="M:OpenNETCF.Windows.Forms.SmartList.ItemCollection.Add(OpenNETCF.Windows.Forms.SmartListItem)">
4299
            <summary>
4300
            Adds an item to the list of items for a SmartList .
4301
            </summary>
4302
            <param name="value">SmartListItem to add</param>
4303
            <returns>Newly created SmartListItem</returns>
4304
        </member>
4305
        <member name="M:OpenNETCF.Windows.Forms.SmartList.ItemCollection.Add(System.String)">
4306
            <summary>
4307
            Adds an item to the list of items for a SmartList .
4308
            </summary>
4309
            <param name="value">string for text property</param>
4310
            <returns>Newly created SmartListItem</returns>
4311
        </member>
4312
        <member name="M:OpenNETCF.Windows.Forms.SmartList.ItemCollection.Clear">
4313
            <summary>
4314
            Removes all elements from the System.Collections.ArrayList.
4315
            </summary>
4316
        </member>
4317
        <member name="M:OpenNETCF.Windows.Forms.SmartList.ItemCollection.Remove(OpenNETCF.Windows.Forms.SmartListItem)">
4318
            <summary>
4319
            Removes the specified object from the collection.
4320
            </summary>
4321
            <param name="value">SmartListItem to remove</param>
4322
        </member>
4323
        <member name="M:OpenNETCF.Windows.Forms.SmartList.ItemCollection.Insert(System.Int32,OpenNETCF.Windows.Forms.SmartListItem)">
4324
            <summary>
4325
            Inserts an item into the list box at the specified index.
4326
            </summary>
4327
            <param name="index">The zero-based index location where the item is inserted.</param>
4328
            <param name="value">An object representing the item to insert.</param>
4329
        </member>
4330
        <member name="M:OpenNETCF.Windows.Forms.SmartList.ItemCollection.Contains(OpenNETCF.Windows.Forms.SmartListItem)">
4331
            <summary>
4332
            Determines whether the specified item is located within the collection.
4333
            </summary>
4334
            <param name="value">An object representing the item to locate in the collection.</param>
4335
            <returns>true if the item is located within the collection; otherwise, false .</returns>
4336
        </member>
4337
        <member name="M:OpenNETCF.Windows.Forms.SmartList.ItemCollection.IndexOf(OpenNETCF.Windows.Forms.SmartListItem)">
4338
            <summary>
4339
            Returns the index within the collection of the specified item
4340
            </summary>
4341
            <param name="value">An object representing the item to locate in the collection.</param>
4342
            <returns>The zero-based index where the item is located within the collection; otherwise, negative one (-1). </returns>
4343
        </member>
4344
        <member name="P:OpenNETCF.Windows.Forms.SmartList.ItemCollection.Item(System.Int32)">
4345
            <summary>
4346
            Gets or sets the item.
4347
            </summary>
4348
        </member>
4349
        <member name="P:OpenNETCF.Windows.Forms.SmartList.ItemCollection.Item(System.String)">
4350
            <summary>
4351
            Gets the item.
4352
            </summary>
4353
        </member>
4354
        <member name="T:OpenNETCF.Windows.Forms.SmartListItem">
4355
            <summary>
4356
            Represents an item in a <see cref="T:OpenNETCF.Windows.Forms.SmartList"/> control.
4357
            </summary>
4358
        </member>
4359
        <member name="M:OpenNETCF.Windows.Forms.SmartListItem.#ctor">
4360
            <summary>
4361
            Initializes a new instance of the SmartListItem class with default values.
4362
            </summary>
4363
        </member>
4364
        <member name="M:OpenNETCF.Windows.Forms.SmartListItem.#ctor(System.String)">
4365
            <summary>
4366
            Initializes a new instance of the SmartListItem class with specified item text.
4367
            </summary>
4368
        </member>
4369
        <member name="M:OpenNETCF.Windows.Forms.SmartListItem.#ctor(System.String,System.Int32)">
4370
            <summary>
4371
            Initializes a new instance of the SmartListItem class with specified item text and ImageIndex.
4372
            </summary>
4373
        </member>
4374
        <member name="P:OpenNETCF.Windows.Forms.SmartListItem.Text">
4375
            <summary>
4376
            Gets or sets the text associated with this item.
4377
            </summary>
4378
        </member>
4379
        <member name="P:OpenNETCF.Windows.Forms.SmartListItem.Font">
4380
            <summary>
4381
            Gets or sets the font associated with this item.
4382
            </summary>
4383
        </member>
4384
        <member name="P:OpenNETCF.Windows.Forms.SmartListItem.ForeColor">
4385
            <summary>
4386
            Gets or sets the foreground color of the item's text.
4387
            </summary>
4388
        </member>
4389
        <member name="P:OpenNETCF.Windows.Forms.SmartListItem.ImageList">
4390
            <summary>
4391
            Gets the <see cref="P:OpenNETCF.Windows.Forms.SmartListItem.ImageList"/> that contains the image displayed with the item.
4392
            </summary>
4393
        </member>
4394
        <member name="P:OpenNETCF.Windows.Forms.SmartListItem.ImageIndex">
4395
            <summary>
4396
            Gets or sets the ImageIndex associated with this item.
4397
            </summary>
4398
        </member>
4399
        <member name="M:OpenNETCF.Windows.Forms.StaticMethods.IsDesignMode(System.Windows.Forms.Control)">
4400
            <summary>
4401
            Determins whether the control is in design mode or not
4402
            </summary>
4403
            <param name="control"></param>
4404
            <returns></returns>
4405
        </member>
4406
        <member name="M:OpenNETCF.Windows.Forms.StaticMethods.Scale(System.Drawing.Graphics)">
4407
            <summary>
4408
            Produces a number to use for scaling graphics
4409
            </summary>
4410
            <param name="g">Graphics object to use</param>
4411
            <returns></returns>
4412
        </member>
4413
        <member name="P:OpenNETCF.Windows.Forms.StaticMethods.IsDesignTime">
4414
            <summary>
4415
            Determine if this instance is running against .NET Framework
4416
            </summary>
4417
        </member>
4418
        <member name="P:OpenNETCF.Windows.Forms.StaticMethods.IsRunTime">
4419
            <summary>
4420
            Determine if this instance is running against .NET Compact Framework
4421
            </summary>
4422
        </member>
4423
        <member name="T:OpenNETCF.Windows.Forms.SystemInformation2">
4424
            <summary>
4425
            Provides information about the current system environment.
4426
            </summary>
4427
            <remarks>Enhances functionality available in <see cref="T:System.Windows.Forms.SystemInformation"/>.</remarks>
4428
        </member>
4429
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.BorderSize">
4430
            <summary>
4431
            Gets the thickness, in pixels, of a flat-style window or system control border.
4432
            </summary>
4433
        </member>
4434
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.CaptionHeight">
4435
            <summary>
4436
            Gets the height, in pixels, of the standard title bar area of a window.
4437
            </summary>
4438
        </member>
4439
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.CursorSize">
4440
            <summary>
4441
            Gets the maximum size, in pixels, that a cursor can occupy.
4442
            </summary>
4443
        </member>
4444
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.DebugOS">
4445
            <summary>
4446
            Gets a value indicating whether the debug version of Windows CE is installed.
4447
            </summary>
4448
        </member>
4449
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.DoubleClickSize">
4450
            <summary>
4451
            Gets the dimensions, in pixels, of the area within which the user must click twice for the operating system to consider the two clicks a double-click.
4452
            </summary>
4453
        </member>
4454
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.DoubleClickTime">
4455
            <summary>
4456
            Gets the maximum number of milliseconds allowed between mouse clicks for a double-click to be valid.
4457
            </summary>
4458
        </member>
4459
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.FixedFrameBorderSize">
4460
            <summary>
4461
            Gets the thickness, in pixels, of the frame border of a window that has a caption and is not resizable.
4462
            </summary>
4463
        </member>
4464
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.HorizontalScrollBarArrowWidth">
4465
            <summary>
4466
            Gets the width, in pixels, of the arrow bitmap on the horizontal scroll bar.
4467
            </summary>
4468
        </member>
4469
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.HorizontalScrollBarHeight">
4470
            <summary>
4471
            Gets the default height, in pixels, of the horizontal scroll bar.
4472
            </summary>
4473
        </member>
4474
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.IconSize">
4475
            <summary>
4476
            Gets the dimensions, in pixels, of the Windows default program icon size.
4477
            </summary>
4478
        </member>
4479
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.IconSpacingSize">
4480
            <summary>
4481
            Gets the size, in pixels, of the grid square used to arrange icons in a large-icon view.
4482
            </summary>
4483
        </member>
4484
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.MenuHeight">
4485
            <summary>
4486
            Gets the height, in pixels, of one line of a menu.
4487
            </summary>
4488
        </member>
4489
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.MonitorCount">
4490
            <summary>
4491
            Gets the number of display monitors.
4492
            </summary>
4493
        </member>
4494
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.MonitorsSameDisplayFormat">
4495
            <summary>
4496
            Gets a value indicating whether all the display monitors are using the same pixel color format.
4497
            </summary>
4498
        </member>
4499
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.MousePresent">
4500
            <summary>
4501
            Gets a value indicating whether a mouse is installed.
4502
            </summary>
4503
        </member>
4504
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.PowerStatus">
4505
            <summary>
4506
            Gets the current system power status.
4507
            </summary>
4508
        </member>
4509
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.PrimaryMonitorSize">
4510
            <summary>
4511
            Gets the dimensions, in pixels, of the current video mode of the primary display.
4512
            </summary>
4513
        </member>
4514
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.ScreenOrientation">
4515
            <summary>
4516
            Gets the orientation of the screen.
4517
            </summary>
4518
            <value>The orientation of the screen, in degrees.</value>
4519
            <seealso cref="T:Microsoft.WindowsCE.Forms.SystemSettings"/>
4520
        </member>
4521
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.SmallIconSize">
4522
            <summary>
4523
            Gets the dimensions, in pixels, of a small icon.
4524
            </summary>
4525
        </member>
4526
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.VerticalScrollBarArrowHeight">
4527
            <summary>
4528
            Gets the height, in pixels, of the arrow bitmap on the vertical scroll bar.
4529
            </summary>
4530
        </member>
4531
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.VerticalScrollBarWidth">
4532
            <summary>
4533
            Gets the default width, in pixels, of the vertical scroll bar.
4534
            </summary>
4535
        </member>
4536
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.VirtualScreen">
4537
            <summary>
4538
            Gets the bounds of the virtual screen.
4539
            </summary>
4540
        </member>
4541
        <member name="P:OpenNETCF.Windows.Forms.SystemInformation2.WorkingArea">
4542
            <summary>
4543
            Gets the size, in pixels, of the working area of the screen.
4544
            </summary>
4545
        </member>
4546
        <member name="T:OpenNETCF.Windows.Forms.TextBox2">
4547
            <summary>
4548
            Enhances the <see cref="T:System.Windows.Forms.TextBox"/> control.
4549
            </summary>
4550
        </member>
4551
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.AppendText(System.String)">
4552
            <summary>
4553
            Appends text to the current text of a text box.
4554
            </summary>
4555
            <param name="text">The text to append to the current contents of the text box.</param>
4556
        </member>
4557
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.Cut">
4558
            <summary>
4559
            Moves the current selection in the <see cref="T:OpenNETCF.Windows.Forms.TextBox2"/> to the Clipboard.
4560
            </summary>
4561
        </member>
4562
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.Copy">
4563
            <summary>
4564
            Copies the current selection in the <see cref="T:OpenNETCF.Windows.Forms.TextBox2"/> to the Clipboard.
4565
            </summary>
4566
        </member>
4567
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.Paste">
4568
            <summary>
4569
            Replaces the current selection in the <see cref="T:OpenNETCF.Windows.Forms.TextBox2"/> with the contents of the Clipboard.
4570
            </summary>
4571
        </member>
4572
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.Clear">
4573
            <summary>
4574
            Clears all text from the <see cref="T:OpenNETCF.Windows.Forms.TextBox2"/> control.
4575
            </summary>
4576
        </member>
4577
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.OnParentChanged(System.EventArgs)">
4578
            <summary>
4579
            Raises the System.Windows.Forms.Control.ParentChanged event.
4580
            </summary>
4581
            <param name="e">An System.EventArgs that contains the event data.</param>
4582
        </member>
4583
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.DefWndProc(Microsoft.WindowsCE.Forms.Message@)">
4584
            <summary>
4585
            Invokes the default window procedure associated with this window.
4586
            It is an error to call this method when the <see cref="P:System.Windows.Forms.Control.Handle"/> property is 0.
4587
            </summary>
4588
            <param name="m">A <see cref="T:Microsoft.WindowsCE.Forms.Message"/> that is associated with the current Windows message.</param>
4589
        </member>
4590
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.WndProc(Microsoft.WindowsCE.Forms.Message@)">
4591
            <summary>
4592
            The wndproc for the control.
4593
            </summary>
4594
            <param name="m">message sent by the system</param>
4595
        </member>
4596
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.OnCopy(System.ComponentModel.CancelEventArgs)">
4597
            <summary>
4598
            Raises the Copy event.
4599
            </summary>
4600
            <param name="e"></param>
4601
        </member>
4602
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.OnCut(System.ComponentModel.CancelEventArgs)">
4603
            <summary>
4604
            Raises the Copy event.
4605
            </summary>
4606
            <param name="e"></param>
4607
        </member>
4608
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.OnPaste(System.ComponentModel.CancelEventArgs)">
4609
            <summary>
4610
            Raises the Copy event.
4611
            </summary>
4612
            <param name="e"></param>
4613
        </member>
4614
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.OnClear(System.ComponentModel.CancelEventArgs)">
4615
            <summary>
4616
            Raises the Copy event.
4617
            </summary>
4618
            <param name="e"></param>
4619
        </member>
4620
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.SelectInternal(System.Int32,System.Int32,System.Int32)">
4621
            <summary>
4622
            Selects the text in the textBox control
4623
            </summary>
4624
            <param name="start"></param>
4625
            <param name="length"></param>
4626
            <param name="textLength"></param>
4627
        </member>
4628
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.AdjustSelectionStartAndEnd(System.Int32,System.Int32,System.Int32@,System.Int32@,System.Int32)">
4629
            <summary>
4630
            Adjusts the selection
4631
            </summary>
4632
            <param name="selStart"></param>
4633
            <param name="selLength"></param>
4634
            <param name="start"></param>
4635
            <param name="end"></param>
4636
            <param name="textLen"></param>
4637
        </member>
4638
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.ClearUndo">
4639
            <summary>
4640
            Clears the Undo buffer
4641
            </summary>
4642
        </member>
4643
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.GetSelectionStartAndLength(System.Int32@,System.Int32@)">
4644
            <summary>
4645
            Gets the selection start and length
4646
            </summary>
4647
            <param name="start"></param>
4648
            <param name="length"></param>
4649
        </member>
4650
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.SetSelectedTextInternal(System.String,System.Boolean)">
4651
            <summary>
4652
            Sets the selected text while clearing the Undo if desired.
4653
            </summary>
4654
            <param name="text"></param>
4655
            <param name="clearUndo"></param>
4656
        </member>
4657
        <member name="M:OpenNETCF.Windows.Forms.TextBox2.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
4658
            <summary>
4659
            Enhances the <see cref="T:System.Windows.Forms.TextBox"/> control.
4660
            </summary>
4661
        </member>
4662
        <member name="P:OpenNETCF.Windows.Forms.TextBox2.CharacterCasing">
4663
            <summary>
4664
            Gets or sets whether the <see cref="T:OpenNETCF.Windows.Forms.TextBox2"/> control modifies the case of characters as they are typed.
4665
            </summary>
4666
            <value>One of the <see cref="P:OpenNETCF.Windows.Forms.TextBox2.CharacterCasing"/> enumeration values that specifies whether the <see cref="T:OpenNETCF.Windows.Forms.TextBox2"/> control modifies the case of characters.
4667
            The default is <see cref="P:OpenNETCF.Windows.Forms.TextBox2.CharacterCasing">CharacterCasing.Normal</see>.</value>
4668
            <remarks>You can use the <see cref="P:OpenNETCF.Windows.Forms.TextBox2.CharacterCasing"/> property to change the case of characters as required by your application.
4669
            For example, you could change the case of all characters entered in a <see cref="T:OpenNETCF.Windows.Forms.TextBox2"/> control used for password entry to uppercase or lowercase to enforce a policy for passwords.</remarks>
4670
        </member>
4671
        <member name="P:OpenNETCF.Windows.Forms.TextBox2.Lines">
4672
            <summary>
4673
            Gets or sets the lines of text in a text box control.
4674
            </summary>
4675
        </member>
4676
        <member name="E:OpenNETCF.Windows.Forms.TextBox2.Copying">
4677
            <summary>
4678
            Occurs when a WM_COPY message is sent to the textbox
4679
            </summary>
4680
        </member>
4681
        <member name="E:OpenNETCF.Windows.Forms.TextBox2.Cutting">
4682
            <summary>
4683
            Occurs when a WM_CUT message is sent to the textbox
4684
            </summary>
4685
        </member>
4686
        <member name="E:OpenNETCF.Windows.Forms.TextBox2.Clearing">
4687
            <summary>
4688
            Occures when a WM_CLEAR message is sent to the textbox
4689
            </summary>
4690
        </member>
4691
        <member name="E:OpenNETCF.Windows.Forms.TextBox2.Pasting">
4692
            <summary>
4693
            Occurs when a WM_PASTE message is sent to the textbox
4694
            </summary>
4695
        </member>
4696
        <member name="T:OpenNETCF.Windows.Forms.ThreadWindows">
4697
            <summary>
4698
            Enumerates all windows associated with a thread. In the future (for CF2.0), it should be based on the EnumThreadWindows function.
4699
            </summary>
4700
        </member>
4701
        <member name="M:OpenNETCF.Windows.Forms.ThreadWindows.#ctor(System.IntPtr)">
4702
            <summary>
4703
            Creates a new <see cref="T:OpenNETCF.Windows.Forms.ThreadWindows"/> object for a specific window handle.
4704
            </summary>
4705
            <param name="parent"></param>
4706
        </member>
4707
        <member name="M:OpenNETCF.Windows.Forms.ThreadWindows.Enable(System.Boolean)">
4708
            <summary>
4709
            Enables/Disables thread windows except parent window.
4710
            </summary>
4711
            <param name="state"></param>
4712
        </member>
4713
        <member name="T:OpenNETCF.Win32.CB">
4714
            <summary>
4715
            ComboBox Messages.
4716
            </summary>
4717
        </member>
4718
        <member name="F:OpenNETCF.Win32.CB.GETEDITSEL">
4719
            <summary>
4720
            An application sends a CB_GETEDITSEL message to get the starting and ending character positions of the current selection in the edit control of a combo box
4721
            </summary>
4722
        </member>
4723
        <member name="F:OpenNETCF.Win32.CB.LIMITTEXT">
4724
            <summary>
4725
            An application sends a CB_LIMITTEXT message to limit the length of the text the user may type into the edit control of a combo box
4726
            </summary>
4727
        </member>
4728
        <member name="F:OpenNETCF.Win32.CB.SETEDITSEL">
4729
            <summary>
4730
            An application sends a CB_SETEDITSEL message to select characters in the edit control of a combo box
4731
            </summary>
4732
        </member>
4733
        <member name="F:OpenNETCF.Win32.CB.ADDSTRING">
4734
            <summary>
4735
            An application sends a CB_ADDSTRING message to add a string to the list box of a combo box. If the combo box does not have the CBS_SORT style, the string is added to the end of the list. Otherwise, the string is inserted into the list, and the list is sorted
4736
            </summary>
4737
        </member>
4738
        <member name="F:OpenNETCF.Win32.CB.DELETESTRING">
4739
            <summary>
4740
            An application sends a CB_DELETESTRING message to delete a string in the list box of a combo box
4741
            </summary>
4742
        </member>
4743
        <member name="F:OpenNETCF.Win32.CB.GETCOUNT">
4744
            <summary>
4745
            An application sends a CB_GETCOUNT message to retrieve the number of items in the list box of a combo box.
4746
            </summary>
4747
        </member>
4748
        <member name="F:OpenNETCF.Win32.CB.GETCURSEL">
4749
            <summary>
4750
            An application sends a CB_GETCURSEL message to retrieve the index of the currently selected item, if any, in the list box of a combo box.
4751
            </summary>
4752
        </member>
4753
        <member name="F:OpenNETCF.Win32.CB.GETLBTEXT">
4754
            <summary>
4755
            An application sends a CB_GETLBTEXT message to retrieve a string from the list of a combo box
4756
            </summary>
4757
        </member>
4758
        <member name="F:OpenNETCF.Win32.CB.GETLBTEXTLEN">
4759
            <summary>
4760
            An application sends a CB_GETLBTEXTLEN message to retrieve the length, in characters, of a string in the list of a combo box.
4761
            </summary>
4762
        </member>
4763
        <member name="F:OpenNETCF.Win32.CB.INSERTSTRING">
4764
            <summary>
4765
            An application sends a CB_INSERTSTRING message to insert a string into the list box of a combo box. Unlike the CB_ADDSTRING message, the CB_INSERTSTRING message does not cause a list with the CBS_SORT style to be sorted
4766
            </summary>
4767
        </member>
4768
        <member name="F:OpenNETCF.Win32.CB.RESETCONTENT">
4769
            <summary>
4770
            An application sends a CB_RESETCONTENT message to remove all items from the list box and edit control of a combo box
4771
            </summary>
4772
        </member>
4773
        <member name="F:OpenNETCF.Win32.CB.FINDSTRING">
4774
            <summary>
4775
            An application sends a CB_FINDSTRING message to search the list box of a combo box for an item beginning with the characters in a specified string
4776
            </summary>
4777
        </member>
4778
        <member name="F:OpenNETCF.Win32.CB.SELECTSTRING">
4779
            <summary>
4780
            An application sends a CB_SELECTSTRING message to search the list of a combo box for an item that begins with the characters in a specified string. If a matching item is found, it is selected and copied to the edit control.
4781
            </summary>
4782
        </member>
4783
        <member name="F:OpenNETCF.Win32.CB.SETCURSEL">
4784
            <summary>
4785
            An application sends a CB_SETCURSEL message to select a string in the list of a combo box. If necessary, the list scrolls the string into view. The text in the edit control of the combo box changes to reflect the new selection, and any previous selection in the list is removed
4786
            </summary>
4787
        </member>
4788
        <member name="F:OpenNETCF.Win32.CB.SHOWDROPDOWN">
4789
            <summary>
4790
            An application sends a CB_SHOWDROPDOWN message to show or hide the list box of a combo box that has the CBS_DROPDOWN or CBS_DROPDOWNLIST style
4791
            </summary>
4792
        </member>
4793
        <member name="F:OpenNETCF.Win32.CB.GETITEMDATA">
4794
            <summary>
4795
            An application sends a CB_GETITEMDATA message to a combo box to retrieve the application-supplied value associated with the specified item in the combo box.
4796
            </summary>
4797
        </member>
4798
        <member name="F:OpenNETCF.Win32.CB.SETITEMDATA">
4799
            <summary>
4800
            An application sends a CB_SETITEMDATA message to set the value associated with the specified item in a combo box
4801
            </summary>
4802
        </member>
4803
        <member name="F:OpenNETCF.Win32.CB.GETDROPPEDCONTROLRECT">
4804
            <summary>
4805
            An application sends a CB_GETDROPPEDCONTROLRECT message to retrieve the screen coordinates of a combo box in its dropped-down state
4806
            </summary>
4807
        </member>
4808
        <member name="F:OpenNETCF.Win32.CB.SETITEMHEIGHT">
4809
            <summary>
4810
            An application sends a CB_SETITEMHEIGHT message to set the height of list items or the selection field in a combo box.
4811
            </summary>
4812
        </member>
4813
        <member name="F:OpenNETCF.Win32.CB.GETITEMHEIGHT">
4814
            <summary>
4815
            An application sends a CB_GETITEMHEIGHT message to determine the height of list items or the selection field in a combo box
4816
            </summary>
4817
        </member>
4818
        <member name="F:OpenNETCF.Win32.CB.SETEXTENDEDUI">
4819
            <summary>
4820
            An application sends a CB_SETEXTENDEDUI message to select either the default user interface or the extended user interface for a combo box that has the CBS_DROPDOWN or CBS_DROPDOWNLIST style
4821
            </summary>
4822
        </member>
4823
        <member name="F:OpenNETCF.Win32.CB.GETEXTENDEDUI">
4824
            <summary>
4825
            An application sends a CB_GETEXTENDEDUI message to determine whether a combo box has the default user interface or the extended user interface
4826
            </summary>
4827
        </member>
4828
        <member name="F:OpenNETCF.Win32.CB.GETDROPPEDSTATE">
4829
            <summary>
4830
            An application sends a CB_GETDROPPEDSTATE message to determine whether the list box of a combo box is dropped down.
4831
            </summary>
4832
        </member>
4833
        <member name="F:OpenNETCF.Win32.CB.FINDSTRINGEXACT">
4834
            <summary>
4835
            An application sends a CB_FINDSTRINGEXACT message to find the first list box string in a combo box that matches the string specified in the lParam parameter.
4836
            </summary>
4837
        </member>
4838
        <member name="F:OpenNETCF.Win32.CB.SETLOCALE">
4839
            <summary>
4840
            An application sends a CB_SETLOCALE message to set the current locale of the combo box. If the combo box has the CBS_SORT style and strings are added using CB_ADDSTRING, the locale of a combo box affects how list items are sorted.
4841
            </summary>
4842
        </member>
4843
        <member name="F:OpenNETCF.Win32.CB.GETLOCALE">
4844
            <summary>
4845
            An application sends a CB_GETLOCALE message to retrieve the current locale of the combo box. The locale is used to determine the correct sorting order of displayed text for combo boxes with the CBS_SORT style and text added by using the CB_ADDSTRING message.
4846
            </summary>
4847
        </member>
4848
        <member name="F:OpenNETCF.Win32.CB.GETTOPINDEX">
4849
            <summary>
4850
            An application sends the CB_GETTOPINDEX message to retrieve the zero-based index of the first visible item in the list box portion of a combo box. Initially, the item with index 0 is at the top of the list box, but if the list box contents have been scrolled, another item may be at the top.
4851
            </summary>
4852
        </member>
4853
        <member name="F:OpenNETCF.Win32.CB.SETTOPINDEX">
4854
            <summary>
4855
            An application sends the CB_SETTOPINDEX message to ensure that a particular item is visible in the list box of a combo box. The system scrolls the list box contents so that either the specified item appears at the top of the list box or the maximum scroll range has been reached.
4856
            </summary>
4857
        </member>
4858
        <member name="F:OpenNETCF.Win32.CB.GETHORIZONTALEXTENT">
4859
            <summary>
4860
            An application sends the CB_GETHORIZONTALEXTENT message to retrieve from a combo box the width, in pixels, by which the list box can be scrolled horizontally (the scrollable width). This is applicable only if the list box has a horizontal scroll bar.
4861
            </summary>
4862
        </member>
4863
        <member name="F:OpenNETCF.Win32.CB.SETHORIZONTALEXTENT">
4864
            <summary>
4865
            An application sends the CB_SETHORIZONTALEXTENT message to set the width, in pixels, by which a list box can be scrolled horizontally (the scrollable width). If the width of the list box is smaller than this value, the horizontal scroll bar horizontally scrolls items in the list box. If the width of the list box is equal to or greater than this value, the horizontal scroll bar is hidden or, if the combo box has the CBS_DISABLENOSCROLL style, disabled.
4866
            </summary>
4867
        </member>
4868
        <member name="F:OpenNETCF.Win32.CB.GETDROPPEDWIDTH">
4869
            <summary>
4870
            An application sends the CB_GETDROPPEDWIDTH message to retrieve the minimum allowable width, in pixels, of the list box of a combo box with the CBS_DROPDOWN or CBS_DROPDOWNLIST style
4871
            </summary>
4872
        </member>
4873
        <member name="F:OpenNETCF.Win32.CB.SETDROPPEDWIDTH">
4874
            <summary>
4875
            An application sends the CB_SETDROPPEDWIDTH message to set the maximum allowable width, in pixels, of the list box of a combo box with the CBS_DROPDOWN or CBS_DROPDOWNLIST style.
4876
            </summary>
4877
        </member>
4878
        <member name="F:OpenNETCF.Win32.CB.INITSTORAGE">
4879
            <summary>
4880
            An application sends the CB_INITSTORAGE message before adding a large number of items to the list box portion of a combo box. This message allocates memory for storing list box items.
4881
            </summary>
4882
        </member>
4883
        <member name="T:OpenNETCF.Win32.CBS">
4884
            <summary>
4885
            Combobox control styles.
4886
            </summary>
4887
        </member>
4888
        <member name="F:OpenNETCF.Win32.CBS.DROPDOWN">
4889
            <summary>
4890
            Similar to CBS_SIMPLE, except that the list box is not displayed unless the user selects an icon next to the edit control.
4891
            </summary>
4892
        </member>
4893
        <member name="F:OpenNETCF.Win32.CBS.DROPDOWNLIST">
4894
            <summary>
4895
            Similar to CBS_DROPDOWN, except that the edit control is replaced by a static text item that displays the current selection in the list box
4896
            </summary>
4897
        </member>
4898
        <member name="F:OpenNETCF.Win32.CBS.AUTOHSCROLL">
4899
            <summary>
4900
            Automatically scrolls the text in an edit control to the right when the user types a character at the end of the line. If this style is not set, only text that fits within the rectangular boundary is allowed.
4901
            </summary>
4902
        </member>
4903
        <member name="F:OpenNETCF.Win32.CBS.OEMCONVERT">
4904
            <summary>
4905
            character set and then back to the Windows character set. This ensures proper character conversion when the application calls the CharToOem function to convert a Windows string in the combo box to OEM characters. This style is most useful for combo boxes that contain file names and applies only to combo boxes created with the CBS_SIMPLE or CBS_DROPDOWN style.
4906
            </summary>
4907
        </member>
4908
        <member name="F:OpenNETCF.Win32.CBS.SORT">
4909
            <summary>
4910
            Automatically sorts strings added to the list box
4911
            </summary>
4912
        </member>
4913
        <member name="F:OpenNETCF.Win32.CBS.HASSTRINGS">
4914
            <summary>
4915
            Specifies that an owner-drawn combo box contains items consisting of strings. The combo box maintains the memory and address for the strings so the application can use the CB_GETLBTEXT message to retrieve the text for a particular item.
4916
            </summary>
4917
        </member>
4918
        <member name="F:OpenNETCF.Win32.CBS.NOINTEGRALHEIGHT">
4919
            <summary>
4920
            Specifies that the size of the combo box is exactly the size specified by the application when it created the combo box. Normally, the system sizes a combo box so that it does not display partial items
4921
            </summary>
4922
        </member>
4923
        <member name="F:OpenNETCF.Win32.CBS.DISABLENOSCROLL">
4924
            <summary>
4925
            Shows a disabled vertical scroll bar in the list box when the box does not contain enough items to scroll. Without this style, the scroll bar is hidden when the list box does not contain enough items.
4926
            </summary>
4927
        </member>
4928
        <member name="F:OpenNETCF.Win32.CBS.UPPERCASE">
4929
            <summary>
4930
            Converts to uppercase all text in both the selection field and the list.
4931
            </summary>
4932
        </member>
4933
        <member name="F:OpenNETCF.Win32.CBS.LOWERCASE">
4934
            <summary>
4935
            Converts to lowercase all text in both the selection field and the list.
4936
            </summary>
4937
        </member>
4938
        <member name="T:OpenNETCF.Win32.DTM">
4939
            <summary>
4940
            DateTimePicker Messages.
4941
            </summary>
4942
        </member>
4943
        <member name="T:OpenNETCF.Win32.DTN">
4944
            <summary>
4945
            DateTimePicker Notifications.
4946
            </summary>
4947
        </member>
4948
        <member name="T:OpenNETCF.Win32.DTS">
4949
            <summary>
4950
            DateTimePicker Styles.
4951
            </summary>
4952
        </member>
4953
        <member name="T:OpenNETCF.Win32.EM">
4954
            <summary>
4955
            Edit control Messages.
4956
            </summary>
4957
        </member>
4958
        <member name="F:OpenNETCF.Win32.EM.GETSEL">
4959
            <summary>
4960
            This message retrieves the starting and ending character positions of the current selection in an edit control.
4961
            </summary>
4962
        </member>
4963
        <member name="F:OpenNETCF.Win32.EM.SETSEL">
4964
            <summary>
4965
            This message selects a range of characters in an edit control.
4966
            </summary>
4967
        </member>
4968
        <member name="F:OpenNETCF.Win32.EM.GETRECT">
4969
            <summary>
4970
            This message retrieves the formatting rectangle of an edit control.
4971
            </summary>
4972
        </member>
4973
        <member name="F:OpenNETCF.Win32.EM.SETRECT">
4974
            <summary>
4975
            This message sets the formatting rectangle of a multiline edit control.
4976
            </summary>
4977
        </member>
4978
        <member name="F:OpenNETCF.Win32.EM.SETRECTNP">
4979
            <summary>
4980
            This message sets the formatting rectangle of a multiline edit control.
4981
            </summary>
4982
        </member>
4983
        <member name="F:OpenNETCF.Win32.EM.SCROLL">
4984
            <summary>
4985
            This message scrolls the text vertically in a multiline edit control.
4986
            </summary>
4987
        </member>
4988
        <member name="F:OpenNETCF.Win32.EM.LINESCROLL">
4989
            <summary>
4990
            This message scrolls the text vertically or horizontally in a multiline edit control.
4991
            </summary>
4992
        </member>
4993
        <member name="F:OpenNETCF.Win32.EM.SCROLLCARET">
4994
            <summary>
4995
            This message scrolls the caret into view in an edit control.
4996
            </summary>
4997
        </member>
4998
        <member name="F:OpenNETCF.Win32.EM.GETMODIFY">
4999
            <summary>
5000
            This message determines whether the contents of an edit control have been modified.
5001
            </summary>
5002
        </member>
5003
        <member name="F:OpenNETCF.Win32.EM.SETMODIFY">
5004
            <summary>
5005
            This message sets or clears the modification flag for an edit control.
5006
            </summary>
5007
        </member>
5008
        <member name="F:OpenNETCF.Win32.EM.GETLINECOUNT">
5009
            <summary>
5010
            This message retrieves the number of lines in a multiline edit control.
5011
            </summary>
5012
        </member>
5013
        <member name="F:OpenNETCF.Win32.EM.LINEINDEX">
5014
            <summary>
5015
            This message retrieves the character index of a line in a multiline edit control.
5016
            </summary>
5017
        </member>
5018
        <member name="F:OpenNETCF.Win32.EM.LINELENGTH">
5019
            <summary>
5020
            This message retrieves the length of a line, in characters, in an edit control.
5021
            </summary>
5022
        </member>
5023
        <member name="F:OpenNETCF.Win32.EM.REPLACESEL">
5024
            <summary>
5025
            This message replaces the current selection in an edit control with the specified text.
5026
            </summary>
5027
        </member>
5028
        <member name="F:OpenNETCF.Win32.EM.GETLINE">
5029
            <summary>
5030
            This message copies a line of text from an edit control and places the text in a specified buffer.
5031
            </summary>
5032
        </member>
5033
        <member name="F:OpenNETCF.Win32.EM.LIMITTEXT">
5034
            <summary>
5035
            This message limits the amount of text the user can enter into an edit control.
5036
            </summary>
5037
        </member>
5038
        <member name="F:OpenNETCF.Win32.EM.CANUNDO">
5039
            <summary>
5040
            This message determines whether an edit-control operation can be undone; that is, whether the control can respond to the EM_UNDO message.
5041
            </summary>
5042
        </member>
5043
        <member name="F:OpenNETCF.Win32.EM.UNDO">
5044
            <summary>
5045
            This message reverses the effect of the last edit control operation.
5046
            </summary>
5047
        </member>
5048
        <member name="F:OpenNETCF.Win32.EM.FMTLINES">
5049
            <summary>
5050
            This message sets the inclusion flag for soft line-break characters on or off within a multiline edit control.
5051
            </summary>
5052
        </member>
5053
        <member name="F:OpenNETCF.Win32.EM.LINEFROMCHAR">
5054
            <summary>
5055
            This message retrieves the index of the line that contains the specified character index in a multiline edit control.
5056
            </summary>
5057
        </member>
5058
        <member name="F:OpenNETCF.Win32.EM.SETTABSTOPS">
5059
            <summary>
5060
            This message sets the tab stops in a multiline edit control.
5061
            </summary>
5062
        </member>
5063
        <member name="F:OpenNETCF.Win32.EM.SETPASSWORDCHAR">
5064
            <summary>
5065
            This message sets or removes a password character displayed in a single-line edit control when the user types text.
5066
            </summary>
5067
        </member>
5068
        <member name="F:OpenNETCF.Win32.EM.EMPTYUNDOBUFFER">
5069
            <summary>
5070
            This message resets the undo flag of an edit control.
5071
            </summary>
5072
        </member>
5073
        <member name="F:OpenNETCF.Win32.EM.GETFIRSTVISIBLELINE">
5074
            <summary>
5075
            This message determines the uppermost visible line in an edit control.
5076
            </summary>
5077
        </member>
5078
        <member name="F:OpenNETCF.Win32.EM.SETREADONLY">
5079
            <summary>
5080
            This message sets or removes the read-only style (ES_READONLY) of an edit control.
5081
            </summary>
5082
        </member>
5083
        <member name="F:OpenNETCF.Win32.EM.GETPASSWORDCHAR">
5084
            <summary>
5085
            This message retrieves the password character displayed in an edit control when the user enters text.
5086
            </summary>
5087
        </member>
5088
        <member name="F:OpenNETCF.Win32.EM.SETMARGINS">
5089
            <summary>
5090
            This message sets the widths of the left and right margins for an edit control.
5091
            </summary>
5092
        </member>
5093
        <member name="F:OpenNETCF.Win32.EM.GETMARGINS">
5094
            <summary>
5095
            This message retrieves the widths of the left and right margins for an edit control.
5096
            </summary>
5097
        </member>
5098
        <member name="F:OpenNETCF.Win32.EM.SETLIMITTEXT">
5099
            <summary>
5100
            This message limits the amount of text the user can enter into an edit control.
5101
            </summary>
5102
        </member>
5103
        <member name="F:OpenNETCF.Win32.EM.GETLIMITTEXT">
5104
            <summary>
5105
            This message retrieves the current text limit, in characters, for an edit control.
5106
            </summary>
5107
        </member>
5108
        <member name="F:OpenNETCF.Win32.EM.POSFROMCHAR">
5109
            <summary>
5110
            This message retrieves the coordinates of the specified character in an edit control.
5111
            </summary>
5112
        </member>
5113
        <member name="F:OpenNETCF.Win32.EM.CHARFROMPOS">
5114
            <summary>
5115
            This message retrieves the zero-based character index and zero-based line index of the character nearest the specified point in an edit control.
5116
            </summary>
5117
        </member>
5118
        <member name="T:OpenNETCF.Win32.ES">
5119
            <summary>
5120
            Edit control styles.
5121
            </summary>
5122
        </member>
5123
        <member name="F:OpenNETCF.Win32.ES.LEFT">
5124
            <summary>
5125
            Left aligned
5126
            </summary>
5127
        </member>
5128
        <member name="F:OpenNETCF.Win32.ES.CENTER">
5129
            <summary>
5130
            Center aligned
5131
            </summary>
5132
        </member>
5133
        <member name="F:OpenNETCF.Win32.ES.RIGHT">
5134
            <summary>
5135
            Right aligned
5136
            </summary>
5137
        </member>
5138
        <member name="F:OpenNETCF.Win32.ES.MULTILINE">
5139
            <summary>
5140
            Designates a multiline edit control. The default is single-line edit control.
5141
            When the multiline edit control is in a dialog box, the default response to pressing the ENTER key is to activate the default button. To use the ENTER key as a carriage return, use the ES_WANTRETURN style.
5142
            </summary>
5143
        </member>
5144
        <member name="F:OpenNETCF.Win32.ES.UPPERCASE">
5145
            <summary>
5146
            Force uppercase
5147
            </summary>
5148
        </member>
5149
        <member name="F:OpenNETCF.Win32.ES.LOWERCASE">
5150
            <summary>
5151
            Force lowercase
5152
            </summary>
5153
        </member>
5154
        <member name="F:OpenNETCF.Win32.ES.PASSWORD">
5155
            <summary>
5156
            Displays an asterisk (*) for each character typed into the edit control. This style is valid only for single-line edit controls
5157
            </summary>
5158
        </member>
5159
        <member name="F:OpenNETCF.Win32.ES.AUTOVSCROLL">
5160
            <summary>
5161
            Show vertical scrollbars automatically
5162
            </summary>
5163
        </member>
5164
        <member name="F:OpenNETCF.Win32.ES.AUTOHSCROLL">
5165
            <summary>
5166
            Show horizontal scrollbars automatically
5167
            </summary>
5168
        </member>
5169
        <member name="F:OpenNETCF.Win32.ES.NOHIDESEL">
5170
            <summary>
5171
            Negates the default behavior for an edit control. The default behavior hides the selection when the control loses the input focus and inverts the selection when the control receives the input focus. If you specify ES_NOHIDESEL, the selected text is inverted, even if the control does not have the focus.
5172
            </summary>
5173
        </member>
5174
        <member name="F:OpenNETCF.Win32.ES.COMBOBOX">
5175
            <summary>
5176
            Combobox
5177
            </summary>
5178
        </member>
5179
        <member name="F:OpenNETCF.Win32.ES.OEMCONVERT">
5180
            <summary>
5181
            Converts text entered in the edit control. The text is converted from the Windows character set to the OEM character set and then back to the Windows character set. This ensures proper character conversion when the application calls the CharToOem function to convert a Windows string in the edit control to OEM characters. This style is most useful for edit controls that contain file names that will be used on file systems that do not support Unicode.
5182
            </summary>
5183
        </member>
5184
        <member name="F:OpenNETCF.Win32.ES.READONLY">
5185
            <summary>
5186
            Prevents the user from typing or editing text in the edit control
5187
            </summary>
5188
        </member>
5189
        <member name="F:OpenNETCF.Win32.ES.WANTRETURN">
5190
            <summary>
5191
            Specifies that a carriage return be inserted when the user presses the ENTER key while entering text into a multiline edit control in a dialog box. If you do not specify this style, pressing the ENTER key has the same effect as pressing the dialog box's default push button. This style has no effect on a single-line edit control.
5192
            </summary>
5193
        </member>
5194
        <member name="F:OpenNETCF.Win32.ES.NUMBER">
5195
            <summary>
5196
            Allows only digits to be entered into the edit control. Note that, even with this set, it is still possible to paste non-digits into the edit control.
5197
            </summary>
5198
        </member>
5199
        <member name="T:OpenNETCF.Win32.GDTR">
5200
            <summary>
5201
            GetDateTimeRange.
5202
            </summary>
5203
        </member>
5204
        <member name="T:OpenNETCF.Win32.GW">
5205
            <summary>
5206
            Window relationships used with GetWindow.
5207
            </summary>
5208
        </member>
5209
        <member name="F:OpenNETCF.Win32.GW.HWNDFIRST">
5210
            <summary>
5211
 
5212
            </summary>
5213
        </member>
5214
        <member name="F:OpenNETCF.Win32.GW.HWNDLAST">
5215
            <summary>
5216
 
5217
            </summary>
5218
        </member>
5219
        <member name="F:OpenNETCF.Win32.GW.HWNDNEXT">
5220
            <summary>
5221
 
5222
            </summary>
5223
        </member>
5224
        <member name="F:OpenNETCF.Win32.GW.HWNDPREV">
5225
            <summary>
5226
 
5227
            </summary>
5228
        </member>
5229
        <member name="F:OpenNETCF.Win32.GW.OWNER">
5230
            <summary>
5231
 
5232
            </summary>
5233
        </member>
5234
        <member name="F:OpenNETCF.Win32.GW.CHILD">
5235
            <summary>
5236
 
5237
            </summary>
5238
        </member>
5239
        <member name="T:OpenNETCF.Win32.GWL">
5240
            <summary>
5241
            Parameters for GetWindowLong.
5242
            </summary>
5243
        </member>
5244
        <member name="F:OpenNETCF.Win32.GWL.WNDPROC">
5245
            <summary>
5246
 
5247
            </summary>
5248
        </member>
5249
        <member name="F:OpenNETCF.Win32.GWL.HINSTANCE">
5250
            <summary>
5251
 
5252
            </summary>
5253
        </member>
5254
        <member name="F:OpenNETCF.Win32.GWL.HWNDPARENT">
5255
            <summary>
5256
 
5257
            </summary>
5258
        </member>
5259
        <member name="F:OpenNETCF.Win32.GWL.STYLE">
5260
            <summary>
5261
 
5262
            </summary>
5263
        </member>
5264
        <member name="F:OpenNETCF.Win32.GWL.EXSTYLE">
5265
            <summary>
5266
 
5267
            </summary>
5268
        </member>
5269
        <member name="F:OpenNETCF.Win32.GWL.USERDATA">
5270
            <summary>
5271
 
5272
            </summary>
5273
        </member>
5274
        <member name="F:OpenNETCF.Win32.GWL.ID">
5275
            <summary>
5276
 
5277
            </summary>
5278
        </member>
5279
        <member name="T:OpenNETCF.Win32.HS">
5280
            <summary>
5281
            HTML control styles.
5282
            </summary>
5283
        </member>
5284
        <member name="T:OpenNETCF.Win32.HWND">
5285
            <summary>
5286
            Preset window handles.
5287
            </summary>
5288
        </member>
5289
        <member name="T:OpenNETCF.Win32.LBS">
5290
            <summary>
5291
            Listbox control styles.
5292
            </summary>
5293
        </member>
5294
        <member name="F:OpenNETCF.Win32.LBS.NOTIFY">
5295
            <summary>
5296
            Parent window receives an input message whenever the user clicks or double-clicks a string
5297
            </summary>
5298
        </member>
5299
        <member name="F:OpenNETCF.Win32.LBS.SORT">
5300
            <summary>
5301
            Strings in the list box are sorted alphabetically.
5302
            </summary>
5303
        </member>
5304
        <member name="F:OpenNETCF.Win32.LBS.NOREDRAW">
5305
            <summary>
5306
            List-box display is not updated when changes are made. This style can be changed at any time by sending a WM_SETREDRAW message.
5307
            </summary>
5308
        </member>
5309
        <member name="F:OpenNETCF.Win32.LBS.MULTIPLESEL">
5310
            <summary>
5311
            String selection is toggled each time the user clicks or double-clicks the string. Any number of strings can be selected.
5312
            </summary>
5313
        </member>
5314
        <member name="F:OpenNETCF.Win32.LBS.HASSTRINGS">
5315
            <summary>
5316
            Specifies an owner-draw list box that contains items consisting of strings. The list box maintains the memory and pointers for the strings so the application can use the GetText member function to retrieve the text for a particular item.
5317
            </summary>
5318
        </member>
5319
        <member name="F:OpenNETCF.Win32.LBS.USETABSTOPS">
5320
            <summary>
5321
            Allows a list box to recognize and expand tab characters when drawing its strings. The default tab positions are 32 dialog units. (A dialog unit is a horizontal or vertical distance. One horizontal dialog unit is equal to one-fourth of the current dialog base width unit. The dialog base units are computed based on the height and width of the current system font. The GetDialogBaseUnits Windows function returns the current dialog base units in pixels.) This style should not be used with LBS_OWNERDRAWFIXED.
5322
            </summary>
5323
        </member>
5324
        <member name="F:OpenNETCF.Win32.LBS.NOINTEGRALHEIGHT">
5325
            <summary>
5326
            The size of the list box is exactly the size specified by the application when it created the list box. Usually, Windows sizes a list box so that the list box does not display partial items.
5327
            </summary>
5328
        </member>
5329
        <member name="F:OpenNETCF.Win32.LBS.MULTICOLUMN">
5330
            <summary>
5331
            Specifies a multicolumn list box that is scrolled horizontally. The SetColumnWidth member function sets the width of the columns.
5332
            </summary>
5333
        </member>
5334
        <member name="F:OpenNETCF.Win32.LBS.WANTKEYBOARDINPUT">
5335
            <summary>
5336
            The owner of the list box receives WM_VKEYTOITEM or WM_CHARTOITEM messages whenever the user presses a key while the list box has input focus. This allows an application to perform special processing on the keyboard input.
5337
            </summary>
5338
        </member>
5339
        <member name="F:OpenNETCF.Win32.LBS.EXTENDEDSEL">
5340
            <summary>
5341
            The user can select multiple items using the SHIFT key and the mouse or special key combinations.
5342
            </summary>
5343
        </member>
5344
        <member name="F:OpenNETCF.Win32.LBS.DISABLENOSCROLL">
5345
            <summary>
5346
            The list box shows a disabled vertical scroll bar when the list box does not contain enough items to scroll. Without this style, the scroll bar is hidden when the list box does not contain enough items.
5347
            </summary>
5348
        </member>
5349
        <member name="F:OpenNETCF.Win32.LBS.NODATA">
5350
            <summary>
5351
            Specifies a no-data list box. Specify this style when the count of items in the list box will exceed one thousand. A no-data list box must also have the LBS_OWNERDRAWFIXED style, but must not have the LBS_SORT or LBS_HASSTRINGS style.
5352
            A no-data list box resembles an owner-drawn list box except that it contains no string or bitmap data for an item. Commands to add, insert, or delete an item always ignore any given item data; requests to find a string within the list box always fail. The system sends the WM_DRAWITEM message to the owner window when an item must be drawn. The itemID member of the DRAWITEMSTRUCT structure passed with the WM_DRAWITEM message specifies the line number of the item to be drawn. A no-data list box does not send a WM_DELETEITEM message.
5353
            </summary>
5354
        </member>
5355
        <member name="F:OpenNETCF.Win32.LBS.STANDARD">
5356
            <summary>
5357
            Strings in the list box are sorted alphabetically, and the parent window receives an input message whenever the user clicks or double-clicks a string. The list box contains borders on all sides.
5358
            </summary>
5359
        </member>
5360
        <member name="T:OpenNETCF.Win32.LVM">
5361
            <summary>
5362
            ListView Messages.
5363
            </summary>
5364
        </member>
5365
        <member name="T:OpenNETCF.Win32.MCM">
5366
            <summary>
5367
            MonthCalendar Messages.
5368
            </summary>
5369
        </member>
5370
        <member name="T:OpenNETCF.Win32.MCN">
5371
            <summary>
5372
            MonthCalendar notifications.
5373
            </summary>
5374
        </member>
5375
        <member name="T:OpenNETCF.Win32.MCS">
5376
            <summary>
5377
            MonthCalendar styles.
5378
            </summary>
5379
        </member>
5380
        <member name="T:OpenNETCF.Win32.MCSC">
5381
            <summary>
5382
            MonthCalendar Colors.
5383
            </summary>
5384
        </member>
5385
        <member name="T:OpenNETCF.Win32.NMHDR">
5386
            <summary>
5387
            Notification header returned in WM_NOTIFY lParam
5388
            </summary>
5389
        </member>
5390
        <member name="F:OpenNETCF.Win32.NMHDR.hwndFrom">
5391
            <summary>
5392
            Window that has sent WM_NOTIFY
5393
            </summary>
5394
        </member>
5395
        <member name="F:OpenNETCF.Win32.NMHDR.idFrom">
5396
            <summary>
5397
            Control ID of the window that sent the notification
5398
            </summary>
5399
        </member>
5400
        <member name="F:OpenNETCF.Win32.NMHDR.code">
5401
            <summary>
5402
            Notification code
5403
            </summary>
5404
        </member>
5405
        <member name="F:OpenNETCF.Win32.SW.HIDE">
5406
            <summary>
5407
            Hides the window and activates another window
5408
            </summary>
5409
        </member>
5410
        <member name="F:OpenNETCF.Win32.SW.SHOWNORMAL">
5411
            <summary>
5412
            Activates and displays a window. If the window is minimized or maximized, the system restores it to its original size and position. An application should specify this flag when displaying the window for the first time.
5413
            </summary>
5414
        </member>
5415
        <member name="F:OpenNETCF.Win32.SW.SHOWNOACTIVATE">
5416
            <summary>
5417
            Displays a window in its most recent size and position. This value is similar to SW_SHOWNORMAL, except the window is not actived.
5418
            </summary>
5419
        </member>
5420
        <member name="F:OpenNETCF.Win32.SW.SHOW">
5421
            <summary>
5422
            Activates the window and displays it in its current size and position.
5423
            </summary>
5424
        </member>
5425
        <member name="F:OpenNETCF.Win32.SW.MINIMIZE">
5426
            <summary>
5427
            Minimizes the specified window and activates the next top-level window in the Z order.
5428
            </summary>
5429
        </member>
5430
        <member name="F:OpenNETCF.Win32.SW.SHOWNA">
5431
            <summary>
5432
            Displays the window in its current size and position. This value is similar to SW_SHOW, except the window is not activated.
5433
            </summary>
5434
        </member>
5435
        <member name="F:OpenNETCF.Win32.SW.SHOWMAXIMIZED">
5436
            <summary>
5437
            Activates the window and displays it as a maximized window.
5438
            </summary>
5439
        </member>
5440
        <member name="F:OpenNETCF.Win32.SW.MAXIMIZE">
5441
            <summary>
5442
            Maximizes the specified window.
5443
            </summary>
5444
        </member>
5445
        <member name="F:OpenNETCF.Win32.SW.RESTORE">
5446
            <summary>
5447
            Activates and displays the window. If the window is minimized or maximized, the system restores it to its original size and position. An application should specify this flag when restoring a minimized window.
5448
            </summary>
5449
        </member>
5450
        <member name="T:OpenNETCF.Win32.SWP">
5451
            <summary>
5452
            Flags used with SetWindowPos.
5453
            </summary>
5454
        </member>
5455
        <member name="F:OpenNETCF.Win32.SWP.NOSIZE">
5456
            <summary>
5457
            Retains current size (ignores the cx and cy members).
5458
            </summary>
5459
        </member>
5460
        <member name="F:OpenNETCF.Win32.SWP.NOMOVE">
5461
            <summary>
5462
            Retains current position (ignores the x and y members).
5463
            </summary>
5464
        </member>
5465
        <member name="F:OpenNETCF.Win32.SWP.NOZORDER">
5466
            <summary>
5467
            Retains current ordering (ignores the hwndInsertAfter member).
5468
            </summary>
5469
        </member>
5470
        <member name="F:OpenNETCF.Win32.SWP.NOREDRAW">
5471
            <summary>
5472
            Does not redraw changes.
5473
            </summary>
5474
        </member>
5475
        <member name="F:OpenNETCF.Win32.SWP.NOACTIVATE">
5476
            <summary>
5477
            Does not activate the window.
5478
            </summary>
5479
        </member>
5480
        <member name="F:OpenNETCF.Win32.SWP.FRAMECHANGED">
5481
            <summary>
5482
            Sends a WM_NCCALCSIZE message to the window, even if the window's size is not being changed. If this flag is not specified, WM_NCCALCSIZE is sent only when the window's size is being changed.
5483
            </summary>
5484
        </member>
5485
        <member name="F:OpenNETCF.Win32.SWP.SHOWWINDOW">
5486
            <summary>
5487
            Displays the window.
5488
            </summary>
5489
        </member>
5490
        <member name="F:OpenNETCF.Win32.SWP.HIDEWINDOW">
5491
            <summary>
5492
            Hides the window.
5493
            </summary>
5494
        </member>
5495
        <member name="F:OpenNETCF.Win32.SWP.NOCOPYBITS">
5496
            <summary>
5497
            Discards the entire contents of the client area. If this flag is not specified, the valid contents of the client area are saved and copied back into the client area after the window is sized or repositioned.
5498
            </summary>
5499
        </member>
5500
        <member name="F:OpenNETCF.Win32.SWP.NOOWNERZORDER">
5501
            <summary>
5502
            Does not change the owner window's position in the Z-order.
5503
            </summary>
5504
        </member>
5505
        <member name="F:OpenNETCF.Win32.SWP.NOSENDCHANGING">
5506
            <summary>
5507
            Prevents the window from receiving the WM_WINDOWPOSCHANGING message.
5508
            </summary>
5509
        </member>
5510
        <member name="F:OpenNETCF.Win32.SWP.DRAWFRAME">
5511
            <summary>
5512
            Draws a frame (defined in the class description for the window) around the window. The window receives a WM_NCCALCSIZE message
5513
            </summary>
5514
        </member>
5515
        <member name="F:OpenNETCF.Win32.SWP.NOREPOSITION">
5516
            <summary>
5517
            Same as SWP_NOOWNERZORDER
5518
            </summary>
5519
        </member>
5520
        <member name="F:OpenNETCF.Win32.SWP.DEFERERASE">
5521
            <summary>
5522
 
5523
            </summary>
5524
        </member>
5525
        <member name="F:OpenNETCF.Win32.SWP.ASYNCWINDOWPOS">
5526
            <summary>
5527
 
5528
            </summary>
5529
        </member>
5530
        <member name="T:OpenNETCF.Win32.TCN">
5531
            <summary>
5532
            Notification Messages.
5533
            </summary>
5534
        </member>
5535
        <member name="T:OpenNETCF.Win32.WA">
5536
            <summary>
5537
            wParams for the WM.ACTIVATE message
5538
            </summary>
5539
        </member>
5540
        <member name="F:OpenNETCF.Win32.WA.INACTIVE">
5541
            <summary>
5542
            Deactivated
5543
            </summary>
5544
        </member>
5545
        <member name="F:OpenNETCF.Win32.WA.ACTIVE">
5546
            <summary>
5547
            Activated by some method other than a mouse click (for example, by a call to the SetActiveWindow function or by use of the keyboard interface to select the window).
5548
            </summary>
5549
        </member>
5550
        <member name="F:OpenNETCF.Win32.WA.CLICKACTIVE">
5551
            <summary>
5552
            Activated by a mouse click
5553
            </summary>
5554
        </member>
5555
        <member name="T:OpenNETCF.Win32.Win32Window">
5556
            <summary>
5557
            A helper class for working with native windows.
5558
            </summary>
5559
        </member>
5560
        <member name="M:OpenNETCF.Win32.Win32Window.ShowWindow(OpenNETCF.Win32.SW)">
5561
            <summary>
5562
            The ShowWindow function sets the specified window's show state.
5563
            </summary>
5564
            <param name="showFlags">Specifies how the window is to be shown</param>
5565
            <returns></returns>
5566
        </member>
5567
        <member name="M:OpenNETCF.Win32.Win32Window.CreateWindowEx(System.Int32,System.String,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)">
5568
            <summary>
5569
            This function creates an overlapped, pop-up, or child window with an extended style; otherwise, this function is identical to the CreateWindow function.
5570
            </summary>
5571
            <param name="dwExStyle">Specifies the extended style of the window</param>
5572
            <param name="lpClassName"></param>
5573
            <param name="lpWindowName"></param>
5574
            <param name="dwStyle">Specifies the style of the window being created.</param>
5575
            <param name="x"></param>
5576
            <param name="y"></param>
5577
            <param name="nWidth"></param>
5578
            <param name="nHeight"></param>
5579
            <param name="hWndParent"></param>
5580
            <param name="hMenu"></param>
5581
            <param name="hInstance"></param>
5582
            <param name="lpParam"></param>
5583
            <returns></returns>
5584
        </member>
5585
        <member name="M:OpenNETCF.Win32.Win32Window.DestroyWindow(System.IntPtr)">
5586
            <summary>
5587
            This function destroys the specified window.
5588
            </summary>
5589
            <param name="hWnd">Handle to the window to be destroyed.</param>
5590
            <returns>Nonzero indicates success.</returns>
5591
        </member>
5592
        <member name="M:OpenNETCF.Win32.Win32Window.FindWindow(System.String,System.String)">
5593
            <summary>
5594
            This function retrieves the handle to the top-level window whose class name and window name match the specified strings.
5595
            </summary>
5596
            <param name="className">The class name.</param>
5597
            <param name="wndName">The window name (the window's title). If this parameter is NULL, all window names match.</param>
5598
            <returns>A handle to the window that has the specified class name and window name indicates success. NULL indicates failure.</returns>
5599
        </member>
5600
        <member name="M:OpenNETCF.Win32.Win32Window.GetWindow(System.IntPtr,OpenNETCF.Win32.GW)">
5601
            <summary>
5602
            Retrieves the handle to a window that has the specified relationship to the Win32Window.
5603
            </summary>
5604
            <param name="hWnd"></param>
5605
            <param name="nCmd">Specifies the relationship between the specified window and the window which is to be retrieved.</param>
5606
            <returns></returns>
5607
        </member>
5608
        <member name="M:OpenNETCF.Win32.Win32Window.GetWindowText(System.IntPtr)">
5609
            <summary>
5610
            Copies the text of the specified window's title bar or controls body.
5611
            </summary>
5612
            <returns>The window text.</returns>
5613
        </member>
5614
        <member name="M:OpenNETCF.Win32.Win32Window.GetWindowRect(System.IntPtr)">
5615
            <summary>
5616
            Returns a Rectangle representing the bounds of the window
5617
            </summary>
5618
            <param name="hWnd">a valid window handle</param>
5619
            <returns>A <see cref="T:System.Drawing.Rectangle"/> representing the bounds of the specified window.</returns>
5620
        </member>
5621
        <member name="M:OpenNETCF.Win32.Win32Window.GetActiveWindow">
5622
            <summary>
5623
            Retrieves the window handle to the active window associated with the thread that calls the function.
5624
            </summary>
5625
            <returns>The handle to the active window associated with the calling thread's message queue indicates success. NULL indicates failure.</returns>
5626
        </member>
5627
        <member name="M:OpenNETCF.Win32.Win32Window.GetFocus">
5628
            <summary>
5629
            Retrieves the handle to the keyboard focus window associated with the thread that called the function.
5630
            </summary>
5631
            <returns>The handle to the window with the keyboard focus indicates success. NULL indicates that the calling thread's message queue does not have an associated window with the keyboard focus.</returns>
5632
        </member>
5633
        <member name="M:OpenNETCF.Win32.Win32Window.GetCapture">
5634
            <summary>
5635
            Retrieves the handle to the window, if any, that has captured the mouse or stylus input. Only one window at a time can capture the mouse or stylus input.
5636
            </summary>
5637
            <returns>The handle of the capture window associated with the current thread indicates success. NULL indicates that no window in the current thread has captured the mouse.</returns>
5638
        </member>
5639
        <member name="M:OpenNETCF.Win32.Win32Window.GetWindowLong(System.IntPtr,OpenNETCF.Win32.GWL)">
5640
            <summary>
5641
            Retrieves information about the specified window.
5642
            </summary>
5643
            <param name="hWnd">Handle to the window and, indirectly, the class to which the window belongs.</param>
5644
            <param name="nItem">Specifies the zero-based offset to the value to be retrieved. Valid values are in the range zero through the number of bytes of extra window memory, minus four; for example, if you specified 12 or more bytes of extra memory, a value of 8 would be an index to the third 32-bit integer.</param>
5645
            <returns>The requested 32-bit value indicates success. Zero indicates failure.</returns>
5646
        </member>
5647
        <member name="M:OpenNETCF.Win32.Win32Window.MoveWindow(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32)">
5648
            <summary>
5649
            This function changes the position and dimensions of the specified window. For a top-level window, the position and dimensions are relative to the upper-left corner of the screen. For a child window, they are relative to the upper-left corner of the parent window's client area.
5650
            </summary>
5651
            <param name="hWnd">Handle to the window.</param>
5652
            <param name="X">Specifies the new position of the left side of the window.</param>
5653
            <param name="Y">Specifies the new position of the top of the window.</param>
5654
            <param name="cx">Specifies the new width of the window.</param>
5655
            <param name="cy">Specifies the new height of the window.</param>
5656
            <returns>Nonzero indicates success. Zero indicates failure.</returns>
5657
        </member>
5658
        <member name="M:OpenNETCF.Win32.Win32Window.PostMessage(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr)">
5659
            <summary>
5660
            Places a message in the message queue associated with the thread that created the specified window and then returns without waiting for the thread to process the message.
5661
            </summary>
5662
            <param name="hWnd">Handle to the window whose window procedure is to receive the message.</param>
5663
            <param name="msg">Specifies the message to be posted.</param>
5664
            <param name="wParam">Specifies additional message-specific information.</param>
5665
            <param name="lParam">Specifies additional message-specific information.</param>
5666
            <returns>Nonzero indicates success. Zero indicates failure.</returns>
5667
        </member>
5668
        <member name="M:OpenNETCF.Win32.Win32Window.SetWindowLong(System.IntPtr,OpenNETCF.Win32.GWL,System.Int32)">
5669
            <summary>
5670
            Changes an attribute of the specified window.
5671
            </summary>
5672
            <param name="hWnd">Handle to the window and, indirectly, the class to which the window belongs.</param>
5673
            <param name="GetWindowLongParam">Specifies the zero-based offset to the value to be set.</param>
5674
            <param name="nValue">Specifies the replacement value.</param>
5675
        </member>
5676
        <member name="M:OpenNETCF.Win32.Win32Window.EnableWindow(System.IntPtr,System.Boolean)">
5677
            <summary>
5678
            enables or disables mouse and keyboard input to the specified window or control. When input is disabled, the window does not receive input such as mouse clicks and key presses. When input is enabled, the window receives all input.
5679
            </summary>
5680
            <param name="hWnd">Handle to the window to be enabled or disabled.</param>
5681
            <param name="bEnable">Boolean that specifies whether to enable or disable the window. If this parameter is TRUE, the window is enabled. If the parameter is FALSE, the window is disabled.</param>
5682
            <returns>Nonzero indicates that the window was previously disabled. Zero indicates that the window was not previously disabled.</returns>
5683
        </member>
5684
        <member name="M:OpenNETCF.Win32.Win32Window.RegisterWindowMessage(System.String)">
5685
            <summary>
5686
            Defines a new window message that is guaranteed to be unique throughout the system. The returned message value can be used when calling the SendMessage or PostMessage function.
5687
            </summary>
5688
            <param name="lpMsg">String that specifies the message to be registered.</param>
5689
            <returns>A message identifier in the range 0xC000 through 0xFFFF indicates that the message is successfully registered. Zero indicates failure.</returns>
5690
        </member>
5691
        <member name="M:OpenNETCF.Win32.Win32Window.SetFocus(System.IntPtr)">
5692
            <summary>
5693
            Sets the keyboard focus to the specified window. All subsequent keyboard input is directed to this window. The window, if any, that previously had the keyboard focus loses it.
5694
            </summary>
5695
            <param name="hWnd">Handle to the window that will receive the keyboard input.
5696
            If this parameter is NULL, keystrokes are ignored.</param>
5697
            <returns>The handle to the window that previously had the keyboard focus indicates success. NULL indicates that the hWnd parameter is invalid or the window is not associated with the calling thread's message queue.</returns>
5698
        </member>
5699
        <member name="M:OpenNETCF.Win32.Win32Window.SetForegroundWindow(System.IntPtr)">
5700
            <summary>
5701
            Puts the thread that created the specified window into the foreground and activates the window.
5702
            </summary>
5703
            <param name="hWnd">Handle to the window that should be activated and brought to the foreground.</param>
5704
            <returns>Nonzero indicates that the window was brought to the foreground. Zero indicates that the window was not brought to the foreground.</returns>
5705
        </member>
5706
        <member name="P:OpenNETCF.Win32.Win32Window.Handle">
5707
            <summary>
5708
            Returns the native window handle.
5709
            </summary>
5710
        </member>
5711
        <member name="P:OpenNETCF.Win32.Win32Window.Text">
5712
            <summary>
5713
            Text of the Win32Window
5714
            </summary>
5715
        </member>
5716
        <member name="T:OpenNETCF.Win32.WM">
5717
            <summary>
5718
            Window Messages.
5719
            </summary>
5720
        </member>
5721
        <member name="F:OpenNETCF.Win32.WM.LBUTTONDOWN">
5722
            <summary>
5723
            This message is posted when the user presses the touch-screen in the client area of a window.
5724
            </summary>
5725
        </member>
5726
        <member name="F:OpenNETCF.Win32.WM.USER">
5727
            <summary>
5728
            This message is used by applications to help define private messages.
5729
            </summary>
5730
        </member>
5731
        <member name="T:OpenNETCF.Win32.WS">
5732
            <summary>
5733
            Window style flags.
5734
            </summary>
5735
        </member>
5736
        <member name="F:OpenNETCF.Win32.WS.BORDER">
5737
            <summary>
5738
            Creates a window that has a thin-line border.
5739
            </summary>
5740
        </member>
5741
        <member name="F:OpenNETCF.Win32.WS.CAPTION">
5742
            <summary>
5743
            Creates a window that has a title bar (includes the BORDER style).
5744
            </summary>
5745
        </member>
5746
        <member name="F:OpenNETCF.Win32.WS.CHILD">
5747
            <summary>
5748
            Creates a child window. This style cannot be used with the POPUP style.
5749
            </summary>
5750
        </member>
5751
        <member name="F:OpenNETCF.Win32.WS.CLIPSIBLINGS">
5752
            <summary>
5753
            Clips child windows relative to each other; that is, when a particular child window receives a WM_PAINT message, the CLIPSIBLINGS style clips all other overlapping child windows out of the region of the child window to be updated. If CLIPSIBLINGS is not specified and child windows overlap, it is possible, when drawing within the client area of a child window, to draw within the client area of a neighboring child window.
5754
            </summary>
5755
        </member>
5756
        <member name="F:OpenNETCF.Win32.WS.DISABLED">
5757
            <summary>
5758
            Creates a window that is initially disabled. A disabled window cannot receive input from the user.
5759
            </summary>
5760
        </member>
5761
        <member name="F:OpenNETCF.Win32.WS.DLGFRAME">
5762
            <summary>
5763
            Creates a window that has a border of a style typically used with dialog boxes. A window with this style cannot have a title bar.
5764
            </summary>
5765
        </member>
5766
        <member name="F:OpenNETCF.Win32.WS.GROUP">
5767
            <summary>
5768
            Specifies the first control of a group of controls. The group consists of this first control and all controls defined after it, up to the next control with the GROUP style. The first control in each group usually has the TABSTOP style so that the user can move from group to group. The user can subsequently change the keyboard focus from one control in the group to the next control in the group by using the direction keys.
5769
            </summary>
5770
        </member>
5771
        <member name="F:OpenNETCF.Win32.WS.HSCROLL">
5772
            <summary>
5773
            Creates a window that has a horizontal scroll bar.
5774
            </summary>
5775
        </member>
5776
        <member name="F:OpenNETCF.Win32.WS.MAXIMIZEBOX">
5777
            <summary>
5778
            Creates a window that has a Maximize button. Cannot be combined with the EX_CONTEXTHELP style.
5779
            </summary>
5780
        </member>
5781
        <member name="F:OpenNETCF.Win32.WS.MINIMIZEBOX">
5782
            <summary>
5783
            Creates a window that has a Minimize button. Cannot be combined with the EX_CONTEXTHELP style.
5784
            </summary>
5785
        </member>
5786
        <member name="F:OpenNETCF.Win32.WS.OVERLAPPED">
5787
            <summary>
5788
            Creates an overlapped window. An overlapped window has a title bar and a border. Same as the TILED style.
5789
            </summary>
5790
        </member>
5791
        <member name="F:OpenNETCF.Win32.WS.POPUP">
5792
            <summary>
5793
            Creates a pop-up window. This style cannot be used with the CHILD style.
5794
            </summary>
5795
        </member>
5796
        <member name="F:OpenNETCF.Win32.WS.SYSMENU">
5797
            <summary>
5798
            Creates a window that has a Close (X) button in the non-client area.
5799
            </summary>
5800
        </member>
5801
        <member name="F:OpenNETCF.Win32.WS.TABSTOP">
5802
            <summary>
5803
            Specifies a control that can receive the keyboard focus when the user presses the TAB key. Pressing the TAB key changes the keyboard focus to the next control with the TABSTOP style.
5804
            </summary>
5805
        </member>
5806
        <member name="F:OpenNETCF.Win32.WS.THICKFRAME">
5807
            <summary>
5808
            Creates a window that has a sizing border. Same as the SIZEBOX style.
5809
            </summary>
5810
        </member>
5811
        <member name="F:OpenNETCF.Win32.WS.VISIBLE">
5812
            <summary>
5813
            Creates a window that is initially visible.
5814
            </summary>
5815
        </member>
5816
        <member name="F:OpenNETCF.Win32.WS.VSCROLL">
5817
            <summary>
5818
            Creates a window that has a vertical scroll bar.
5819
            </summary>
5820
        </member>
5821
        <member name="T:OpenNETCF.Win32.WS_EX">
5822
            <summary>
5823
            Extended control styles.
5824
            </summary>
5825
        </member>
5826
        <member name="F:OpenNETCF.Win32.WS_EX.CLIENTEDGE">
5827
            <summary>
5828
            Specifies that a window has a border with a sunken edge.
5829
            </summary>
5830
        </member>
5831
        <member name="F:OpenNETCF.Win32.WS_EX.DLGMODALFRAME">
5832
            <summary>
5833
            Creates a window that has a double border; the window can, optionally, be created with a title bar by specifying the WS_CAPTION style in the dwStyle parameter.
5834
            </summary>
5835
        </member>
5836
        <member name="F:OpenNETCF.Win32.WS_EX.NOACTIVATE">
5837
            <summary>
5838
            A top-level window created with this style cannot be activated. If a child window has this style, tapping it does not cause its top-level parent to be activated. A window that has this style receives stylus events, but neither it nor its child windows can get the focus. Supported in Windows CE versions 2.0 and later.
5839
            </summary>
5840
        </member>
5841
        <member name="F:OpenNETCF.Win32.WS_EX.OVERLAPPEDWINDOW">
5842
            <summary>
5843
            Combines the CLIENTEDGE and WINDOWEDGE styles.
5844
            </summary>
5845
        </member>
5846
        <member name="F:OpenNETCF.Win32.WS_EX.STATICEDGE">
5847
            <summary>
5848
            Creates a window with a three-dimensional border style intended to be used for items that do not accept user input.
5849
            </summary>
5850
        </member>
5851
        <member name="F:OpenNETCF.Win32.WS_EX.TOOLWINDOW">
5852
            <summary>
5853
            Creates a tool window; that is, a window intended to be used as a floating toolbar. A tool window has a title bar that is shorter than a normal title bar, and the window title is drawn using a smaller font. A tool window does not appear in the taskbar or in the dialog that appears when the user presses ALT+TAB. If a tool window has a system menu, its icon is not displayed on the title bar. However, you can display the system menu by right-clicking or by typing ALT+SPACE.
5854
            </summary>
5855
        </member>
5856
        <member name="F:OpenNETCF.Win32.WS_EX.TOPMOST">
5857
            <summary>
5858
            Specifies that a window created with this style should be placed above all non-topmost windows and should stay above them, even when the window is deactivated. To add or remove this style, use the SetWindowPos function.
5859
            </summary>
5860
        </member>
5861
        <member name="F:OpenNETCF.Win32.WS_EX.WINDOWEDGE">
5862
            <summary>
5863
            Specifies that a window has a border with a raised edge.
5864
            </summary>
5865
        </member>
5866
        <member name="F:OpenNETCF.Win32.WS_EX.CONTEXTHELP">
5867
            <summary>
5868
            Includes a question mark in the title bar of the window. When the user clicks the question mark, the cursor changes to a question mark with a pointer. If the user then clicks a child window, the child receives a WM_HELP message. The child window should pass the message to the parent window procedure, which should call the WinHelp function using the HELP_WM_HELP command. The Help application displays a pop-up window that typically contains help for the child window.
5869
            WS_EX_CONTEXTHELP cannot be used with the WS_MAXIMIZEBOX or WS_MINIMIZEBOX styles.
5870
            </summary>
5871
        </member>
5872
        <member name="F:OpenNETCF.Win32.WS_EX.CAPTIONOKBUTTON">
5873
            <summary>
5874
            Window includes an OK button in the title bar
5875
            </summary>
5876
        </member>
5877
        <member name="F:OpenNETCF.Win32.WS_EX.NODRAG">
5878
            <summary>
5879
            A window created with this style cannot be dragged using a mouse or stylus
5880
            </summary>
5881
        </member>
5882
        <member name="F:OpenNETCF.Win32.WS_EX.ABOVESTARTUP">
5883
            <summary>
5884
            Places window above Start bar.  When combined with WS_EX.TOPMOST, generates a full-screen, top-most Window
5885
            </summary>
5886
        </member>
5887
        <member name="F:OpenNETCF.Win32.WS_EX.INK">
5888
            <summary>
5889
            Indicates that no default beeping sound is generated on clicking on the window.
5890
            </summary>
5891
        </member>
5892
        <member name="F:OpenNETCF.Win32.WS_EX.NOANIMATION">
5893
            <summary>
5894
            A window created with this style does not show animated exploding and imploding rectangles, and does not have a button on the taskbar. Supported in Windows CE 2.0 and later.
5895
            </summary>
5896
        </member>
5897
        <member name="F:OpenNETCF.Win32.WS_EX.NONE">
5898
            <summary>
5899
            Additional value for Completeness
5900
            </summary>
5901
        </member>
5902
    </members>
5903
</doc>