[jit] Enable partial generic sharing when not using AOT as an experiment.
[mono.git] / mcs / class / Managed.Windows.Forms / Documentation / en / System.Windows.Forms / DateTimePicker.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <Type Name="DateTimePicker" FullName="System.Windows.Forms.DateTimePicker">
3   <TypeSignature Language="C#" Value="public class DateTimePicker : System.Windows.Forms.Control" />
4   <AssemblyInfo>
5     <AssemblyName>System.Windows.Forms</AssemblyName>
6     <AssemblyVersion>1.0.5000.0</AssemblyVersion>
7     <AssemblyVersion>2.0.0.0</AssemblyVersion>
8   </AssemblyInfo>
9   <Base>
10     <BaseTypeName>System.Windows.Forms.Control</BaseTypeName>
11   </Base>
12   <Interfaces />
13   <Attributes>
14     <Attribute>
15       <AttributeName>System.ComponentModel.Designer("System.Windows.Forms.Design.DateTimePickerDesigner, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.IDesigner")</AttributeName>
16     </Attribute>
17     <Attribute>
18       <AttributeName>System.ComponentModel.DefaultProperty("Value")</AttributeName>
19     </Attribute>
20     <Attribute>
21       <AttributeName>System.ComponentModel.DefaultEvent("ValueChanged")</AttributeName>
22     </Attribute>
23     <Attribute>
24       <AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName>
25     </Attribute>
26     <Attribute>
27       <AttributeName>System.ComponentModel.DefaultBindingProperty("Value")</AttributeName>
28     </Attribute>
29     <Attribute>
30       <AttributeName>System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)</AttributeName>
31     </Attribute>
32   </Attributes>
33   <Docs>
34     <remarks>
35       <attribution license="cc4" from="Microsoft" modified="false" />
36       <para>The <see cref="T:System.Windows.Forms.DateTimePicker" /> control is used to allow the user to select a date and time, and to display that date and time in the specified format. The <see cref="T:System.Windows.Forms.DateTimePicker" /> control makes it easy to work with dates and times because it handles a lot of the data validation automatically.</para>
37       <block subset="none" type="note">
38         <para>The <see cref="T:System.Windows.Forms.DateTimePicker" /> control only supports Gregorian calendars.</para>
39       </block>
40       <para>When used to represent a date, the <see cref="T:System.Windows.Forms.DateTimePicker" /> control appears in two parts: a drop-down list with a date represented in text, and a calendar that appears when you click the down-arrow next to the list. The calendar looks like the <see cref="T:System.Windows.Forms.MonthCalendar" /> control, which can be used for selecting multiple dates. For more information about the <see cref="T:System.Windows.Forms.MonthCalendar" /> control, see <format type="text/html"><a href="788C5325-B721-44EC-95BF-9B680BA0F6A2">MonthCalendar Control Overview (Windows Forms)</a></format>.</para>
41       <para>You can change the look of the calendar portion of the control by setting the <see cref="P:System.Windows.Forms.DateTimePicker.CalendarForeColor" />, <see cref="P:System.Windows.Forms.DateTimePicker.CalendarFont" />, <see cref="P:System.Windows.Forms.DateTimePicker.CalendarTitleBackColor" />, <see cref="P:System.Windows.Forms.DateTimePicker.CalendarTitleForeColor" />, <see cref="P:System.Windows.Forms.DateTimePicker.CalendarTrailingForeColor" />, and <see cref="P:System.Windows.Forms.DateTimePicker.CalendarMonthBackground" /> properties.</para>
42       <para>To use a spin button control (also known as an up-down control) to adjust the date/time value, set the <see cref="P:System.Windows.Forms.DateTimePicker.ShowUpDown" /> property to true. The calendar will not drop down when the control is selected. The date and time can be adjusted by selecting each element individually and using the up and down buttons to change the value.</para>
43       <para>The <see cref="P:System.Windows.Forms.DateTimePicker.Value" /> property contains the current date and time the control is set to. You can use the <see cref="P:System.Windows.Forms.DateTimePicker.Text" /> property or the appropriate member of <see cref="P:System.Windows.Forms.DateTimePicker.Value" /> to get the date and time value. For more information, see <format type="text/html"><a href="A8A48D68-E4B5-426E-9764-51230FC9ACD2">How to: Set and Return Dates with the Windows Forms DateTimePicker Control</a></format>. You can limit the dates and times that can be selected by setting the <see cref="P:System.Windows.Forms.DateTimePicker.MinDate" /> and <see cref="P:System.Windows.Forms.DateTimePicker.MaxDate" /> properties.</para>
44       <para>The values can be displayed in four formats, which are set by the <see cref="P:System.Windows.Forms.DateTimePicker.Format" /> property: <see cref="F:System.Windows.Forms.DateTimePickerFormat.Long" />, <see cref="F:System.Windows.Forms.DateTimePickerFormat.Short" />, <see cref="F:System.Windows.Forms.DateTimePickerFormat.Time" />, or <see cref="F:System.Windows.Forms.DateTimePickerFormat.Custom" />. The default date <see cref="P:System.Windows.Forms.DateTimePicker.Format" /> is <see cref="F:System.Windows.Forms.DateTimePickerFormat.Long" />.</para>
45       <para>If you want the <see cref="T:System.Windows.Forms.DateTimePicker" /> to appear as a control for picking or editing times instead of dates, set the <see cref="P:System.Windows.Forms.DateTimePicker.ShowUpDown" /> property to true and the <see cref="P:System.Windows.Forms.DateTimePicker.Format" /> property to <see cref="F:System.Windows.Forms.DateTimePickerFormat.Time" />. For more information, see <format type="text/html"><a href="0c1c8b40-1b50-4301-a90c-39516775ccb1">How to: Display Time with the DateTimePicker Control</a></format>.</para>
46       <para>If the <see cref="P:System.Windows.Forms.DateTimePicker.Format" /> property is set to <see cref="F:System.Windows.Forms.DateTimePickerFormat.Custom" />, you can create your own format style by setting the <see cref="P:System.Windows.Forms.DateTimePicker.CustomFormat" /> property and building a custom format string. The custom format string can be a combination of custom field characters and other literal characters. For example, you can display the date as "June 01, 2012 - Friday" by setting the <see cref="P:System.Windows.Forms.DateTimePicker.CustomFormat" /> property to "MMMM dd, yyyy - dddd". For more information, see <format type="text/html"><a href="39767691-2D2B-46B6-A663-B7901E581A6E">How to: Display a Date in a Custom Format with the Windows Forms DateTimePicker Control</a></format> and <format type="text/html"><a href="98b374e3-0cc2-4c78-ab44-efb671d71984">Custom Date and Time Format Strings</a></format>.</para>
47       <block subset="none" type="note">
48         <para>When a <see cref="T:System.Windows.Forms.DateTimePicker" /> is data-bound and the backing value is changed to null, the value of the <see cref="T:System.Windows.Forms.DateTimePicker" /> will not be updated and the previous value will be retained. In situations where this behavior is not desirable (for example, when using a set of data-bound controls to page through a recordset) use the <see cref="E:System.Windows.Forms.Binding.Format" /> event of the <see cref="T:System.Windows.Forms.Binding" /> class to set the <see cref="T:System.Windows.Forms.DateTimePicker" /> to a value recognizable as a null.</para>
49       </block>
50       <para />
51     </remarks>
52     <summary>
53       <attribution license="cc4" from="Microsoft" modified="false" />
54       <para>Represents a Windows control that allows the user to select a date and a time and to display the date and time with a specified format.</para>
55     </summary>
56   </Docs>
57   <Members>
58     <Member MemberName=".ctor">
59       <MemberSignature Language="C#" Value="public DateTimePicker ();" />
60       <MemberType>Constructor</MemberType>
61       <Parameters />
62       <Docs>
63         <remarks>To be added.</remarks>
64         <summary>
65           <attribution license="cc4" from="Microsoft" modified="false" />
66           <para>Initializes a new instance of the <see cref="T:System.Windows.Forms.DateTimePicker" /> class.</para>
67         </summary>
68       </Docs>
69       <AssemblyInfo>
70         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
71         <AssemblyVersion>2.0.0.0</AssemblyVersion>
72       </AssemblyInfo>
73     </Member>
74     <Member MemberName="BackColor">
75       <MemberSignature Language="C#" Value="public override System.Drawing.Color BackColor { set; get; }" />
76       <MemberType>Property</MemberType>
77       <Attributes>
78         <Attribute>
79           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
80         </Attribute>
81         <Attribute>
82           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
83         </Attribute>
84       </Attributes>
85       <ReturnValue>
86         <ReturnType>System.Drawing.Color</ReturnType>
87       </ReturnValue>
88       <Docs>
89         <value>To be added.</value>
90         <remarks>
91           <attribution license="cc4" from="Microsoft" modified="false" />
92           <para>Setting the <see cref="P:System.Windows.Forms.DateTimePicker.BackColor" /> has no effect on the appearance of the <see cref="T:System.Windows.Forms.DateTimePicker" />. To set the background color for the drop-down calendar of the <see cref="T:System.Windows.Forms.DateTimePicker" />, see the <see cref="P:System.Windows.Forms.DateTimePicker.CalendarMonthBackground" /> property.</para>
93         </remarks>
94         <summary>
95           <attribution license="cc4" from="Microsoft" modified="false" />
96           <para>Gets or sets a value indicating the background color of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</para>
97         </summary>
98       </Docs>
99       <AssemblyInfo>
100         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
101         <AssemblyVersion>2.0.0.0</AssemblyVersion>
102       </AssemblyInfo>
103     </Member>
104     <Member MemberName="BackColorChanged">
105       <MemberSignature Language="C#" Value="public event EventHandler BackColorChanged;" />
106       <MemberType>Event</MemberType>
107       <Attributes>
108         <Attribute>
109           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
110         </Attribute>
111         <Attribute>
112           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
113         </Attribute>
114       </Attributes>
115       <ReturnValue>
116         <ReturnType>System.EventHandler</ReturnType>
117       </ReturnValue>
118       <Docs>
119         <remarks>To be added.</remarks>
120         <summary>
121           <attribution license="cc4" from="Microsoft" modified="false" />
122           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DateTimePicker.BackColor" /> property changes.</para>
123         </summary>
124       </Docs>
125       <AssemblyInfo>
126         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
127         <AssemblyVersion>2.0.0.0</AssemblyVersion>
128       </AssemblyInfo>
129     </Member>
130     <Member MemberName="BackgroundImage">
131       <MemberSignature Language="C#" Value="public override System.Drawing.Image BackgroundImage { set; get; }" />
132       <MemberType>Property</MemberType>
133       <Attributes>
134         <Attribute>
135           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
136         </Attribute>
137         <Attribute>
138           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
139         </Attribute>
140       </Attributes>
141       <ReturnValue>
142         <ReturnType>System.Drawing.Image</ReturnType>
143       </ReturnValue>
144       <Docs>
145         <value>To be added.</value>
146         <remarks>
147           <attribution license="cc4" from="Microsoft" modified="false" />
148           <para>This property/method/event is not relevant for this class.</para>
149         </remarks>
150         <summary>
151           <attribution license="cc4" from="Microsoft" modified="false" />
152           <para>Gets or sets the background image for the control.</para>
153         </summary>
154       </Docs>
155       <AssemblyInfo>
156         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
157         <AssemblyVersion>2.0.0.0</AssemblyVersion>
158       </AssemblyInfo>
159     </Member>
160     <Member MemberName="BackgroundImageChanged">
161       <MemberSignature Language="C#" Value="public event EventHandler BackgroundImageChanged;" />
162       <MemberType>Event</MemberType>
163       <Attributes>
164         <Attribute>
165           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
166         </Attribute>
167         <Attribute>
168           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
169         </Attribute>
170       </Attributes>
171       <ReturnValue>
172         <ReturnType>System.EventHandler</ReturnType>
173       </ReturnValue>
174       <Docs>
175         <remarks>To be added.</remarks>
176         <summary>
177           <attribution license="cc4" from="Microsoft" modified="false" />
178           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DateTimePicker.BackgroundImage" /> property changes.</para>
179         </summary>
180       </Docs>
181       <AssemblyInfo>
182         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
183         <AssemblyVersion>2.0.0.0</AssemblyVersion>
184       </AssemblyInfo>
185     </Member>
186     <Member MemberName="BackgroundImageLayout">
187       <MemberSignature Language="C#" Value="public override System.Windows.Forms.ImageLayout BackgroundImageLayout { set; get; }" />
188       <MemberType>Property</MemberType>
189       <AssemblyInfo>
190         <AssemblyVersion>2.0.0.0</AssemblyVersion>
191       </AssemblyInfo>
192       <Attributes>
193         <Attribute>
194           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
195         </Attribute>
196         <Attribute>
197           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
198         </Attribute>
199       </Attributes>
200       <ReturnValue>
201         <ReturnType>System.Windows.Forms.ImageLayout</ReturnType>
202       </ReturnValue>
203       <Docs>
204         <value>To be added.</value>
205         <remarks>
206           <attribution license="cc4" from="Microsoft" modified="false" />
207           <para>Setting the <see cref="P:System.Windows.Forms.ProgressBar.BackgroundImageLayout" /> property has no effect on the appearance of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</para>
208         </remarks>
209         <summary>
210           <attribution license="cc4" from="Microsoft" modified="false" />
211           <para>Gets or sets the layout of the background image of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</para>
212         </summary>
213       </Docs>
214     </Member>
215     <Member MemberName="BackgroundImageLayoutChanged">
216       <MemberSignature Language="C#" Value="public event EventHandler BackgroundImageLayoutChanged;" />
217       <MemberType>Event</MemberType>
218       <AssemblyInfo>
219         <AssemblyVersion>2.0.0.0</AssemblyVersion>
220       </AssemblyInfo>
221       <Attributes>
222         <Attribute>
223           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
224         </Attribute>
225         <Attribute>
226           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
227         </Attribute>
228       </Attributes>
229       <ReturnValue>
230         <ReturnType>System.EventHandler</ReturnType>
231       </ReturnValue>
232       <Docs>
233         <remarks>To be added.</remarks>
234         <summary>
235           <attribution license="cc4" from="Microsoft" modified="false" />
236           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DateTimePicker.BackgroundImageLayout" /> property changes.</para>
237         </summary>
238       </Docs>
239     </Member>
240     <Member MemberName="CalendarFont">
241       <MemberSignature Language="C#" Value="public System.Drawing.Font CalendarFont { set; get; }" />
242       <MemberType>Property</MemberType>
243       <Attributes>
244         <Attribute>
245           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
246         </Attribute>
247         <Attribute>
248           <AttributeName>System.ComponentModel.AmbientValue(null)</AttributeName>
249         </Attribute>
250       </Attributes>
251       <ReturnValue>
252         <ReturnType>System.Drawing.Font</ReturnType>
253       </ReturnValue>
254       <Docs>
255         <value>To be added.</value>
256         <remarks>
257           <attribution license="cc4" from="Microsoft" modified="false" />
258           <para>Starting with Windows Vista and depending on the theme, setting this property might not change the appearance of the calendar. For example, if Windows is set to use the Aero theme, setting this property has no effect. This is because an updated version of the calendar is rendered with an appearance that is derived at run time from the current operating system theme. If you want to use this property and enable the earlier version of the calendar, you can disable visual styles for your application. Disabling visual styles might affect the appearance and behavior of other controls in your application. To disable visual styles in Visual Basic, open the Project Designer and uncheck the <ui>Enable XP visual styles</ui> check box. To disable visual styles in C#, open Program.cs and comment out Application.EnableVisualStyles();. For more information about visual styles, see <format type="text/html"><a href="0a038ade-31cf-4e56-9cfe-7a1e6b83b57f">How to: Enable Windows XP Visual Styles</a></format>.</para>
259         </remarks>
260         <summary>
261           <attribution license="cc4" from="Microsoft" modified="false" />
262           <para>Gets or sets the font style applied to the calendar.</para>
263         </summary>
264       </Docs>
265       <AssemblyInfo>
266         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
267         <AssemblyVersion>2.0.0.0</AssemblyVersion>
268       </AssemblyInfo>
269     </Member>
270     <Member MemberName="CalendarForeColor">
271       <MemberSignature Language="C#" Value="public System.Drawing.Color CalendarForeColor { set; get; }" />
272       <MemberType>Property</MemberType>
273       <ReturnValue>
274         <ReturnType>System.Drawing.Color</ReturnType>
275       </ReturnValue>
276       <Docs>
277         <value>To be added.</value>
278         <remarks>
279           <attribution license="cc4" from="Microsoft" modified="false" />
280           <para>When a <see cref="T:System.Windows.Forms.DateTimePicker" /> is created, this property is initially set equal to the <see cref="P:System.Windows.Forms.Control.ForeColor" /> property value.</para>
281           <para>Starting with Windows Vista and depending on the theme, setting this property might not change the appearance of the calendar. For example, if Windows is set to use the Aero theme, setting this property has no effect. This is because an updated version of the calendar is rendered with an appearance that is derived at run time from the current operating system theme. If you want to use this property and enable the earlier version of the calendar, you can disable visual styles for your application. Disabling visual styles might affect the appearance and behavior of other controls in your application. To disable visual styles in Visual Basic, open the Project Designer and uncheck the <ui>Enable XP visual styles</ui> check box. To disable visual styles in C#, open Program.cs and comment out Application.EnableVisualStyles();. For more information about visual styles, see <format type="text/html"><a href="0a038ade-31cf-4e56-9cfe-7a1e6b83b57f">How to: Enable Windows XP Visual Styles</a></format>.</para>
282         </remarks>
283         <summary>
284           <attribution license="cc4" from="Microsoft" modified="false" />
285           <para>Gets or sets the foreground color of the calendar.</para>
286         </summary>
287       </Docs>
288       <AssemblyInfo>
289         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
290         <AssemblyVersion>2.0.0.0</AssemblyVersion>
291       </AssemblyInfo>
292     </Member>
293     <Member MemberName="CalendarMonthBackground">
294       <MemberSignature Language="C#" Value="public System.Drawing.Color CalendarMonthBackground { set; get; }" />
295       <MemberType>Property</MemberType>
296       <ReturnValue>
297         <ReturnType>System.Drawing.Color</ReturnType>
298       </ReturnValue>
299       <Docs>
300         <value>To be added.</value>
301         <remarks>
302           <attribution license="cc4" from="Microsoft" modified="false" />
303           <para>When a <see cref="T:System.Windows.Forms.DateTimePicker" /> is created, this property is initially set equal to the <see cref="F:System.Windows.Forms.DateTimePicker.DefaultMonthBackColor" /> field value.</para>
304           <para>Starting with Windows Vista and depending on the theme, setting this property might not change the appearance of the calendar. For example, if Windows is set to use the Aero theme, setting this property has no effect. This is because an updated version of the calendar is rendered with an appearance that is derived at run time from the current operating system theme. If you want to use this property and enable the earlier version of the calendar, you can disable visual styles for your application. Disabling visual styles might affect the appearance and behavior of other controls in your application. To disable visual styles in Visual Basic, open the Project Designer and uncheck the <ui>Enable XP visual styles</ui> check box. To disable visual styles in C#, open Program.cs and comment out Application.EnableVisualStyles();. For more information about visual styles, see <format type="text/html"><a href="0a038ade-31cf-4e56-9cfe-7a1e6b83b57f">How to: Enable Windows XP Visual Styles</a></format>.</para>
305         </remarks>
306         <summary>
307           <attribution license="cc4" from="Microsoft" modified="false" />
308           <para>Gets or sets the background color of the calendar month.</para>
309         </summary>
310       </Docs>
311       <AssemblyInfo>
312         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
313         <AssemblyVersion>2.0.0.0</AssemblyVersion>
314       </AssemblyInfo>
315     </Member>
316     <Member MemberName="CalendarTitleBackColor">
317       <MemberSignature Language="C#" Value="public System.Drawing.Color CalendarTitleBackColor { set; get; }" />
318       <MemberType>Property</MemberType>
319       <ReturnValue>
320         <ReturnType>System.Drawing.Color</ReturnType>
321       </ReturnValue>
322       <Docs>
323         <value>To be added.</value>
324         <remarks>
325           <attribution license="cc4" from="Microsoft" modified="false" />
326           <para>When a <see cref="T:System.Windows.Forms.DateTimePicker" /> is created, this property is initially set equal to the <see cref="F:System.Windows.Forms.DateTimePicker.DefaultTitleBackColor" /> field value.</para>
327           <para>Starting with Windows Vista and depending on the theme, setting this property might not change the appearance of the calendar. For example, if Windows is set to use the Aero theme, setting this property has no effect. This is because an updated version of the calendar is rendered with an appearance that is derived at run time from the current operating system theme. If you want to use this property and enable the earlier version of the calendar, you can disable visual styles for your application. Disabling visual styles might affect the appearance and behavior of other controls in your application. To disable visual styles in Visual Basic, open the Project Designer and uncheck the <ui>Enable XP visual styles</ui> check box. To disable visual styles in C#, open Program.cs and comment out Application.EnableVisualStyles();. For more information about visual styles, see <format type="text/html"><a href="0a038ade-31cf-4e56-9cfe-7a1e6b83b57f">How to: Enable Windows XP Visual Styles</a></format>.</para>
328         </remarks>
329         <summary>
330           <attribution license="cc4" from="Microsoft" modified="false" />
331           <para>Gets or sets the background color of the calendar title.</para>
332         </summary>
333       </Docs>
334       <AssemblyInfo>
335         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
336         <AssemblyVersion>2.0.0.0</AssemblyVersion>
337       </AssemblyInfo>
338     </Member>
339     <Member MemberName="CalendarTitleForeColor">
340       <MemberSignature Language="C#" Value="public System.Drawing.Color CalendarTitleForeColor { set; get; }" />
341       <MemberType>Property</MemberType>
342       <ReturnValue>
343         <ReturnType>System.Drawing.Color</ReturnType>
344       </ReturnValue>
345       <Docs>
346         <value>To be added.</value>
347         <remarks>
348           <attribution license="cc4" from="Microsoft" modified="false" />
349           <para>When a <see cref="T:System.Windows.Forms.DateTimePicker" /> is created, this property is initially set equal to the <see cref="F:System.Windows.Forms.DateTimePicker.DefaultTitleForeColor" /> field value.</para>
350           <para>Starting with Windows Vista and depending on the theme, setting this property might not change the appearance of the calendar. For example, if Windows is set to use the Aero theme, setting this property has no effect. This is because an updated version of the calendar is rendered with an appearance that is derived at run time from the current operating system theme. If you want to use this property and enable the earlier version of the calendar, you can disable visual styles for your application. Disabling visual styles might affect the appearance and behavior of other controls in your application. To disable visual styles in Visual Basic, open the Project Designer and uncheck the <ui>Enable XP visual styles</ui> check box. To disable visual styles in C#, open Program.cs and comment out Application.EnableVisualStyles();. For more information about visual styles, see <format type="text/html"><a href="0a038ade-31cf-4e56-9cfe-7a1e6b83b57f">How to: Enable Windows XP Visual Styles</a></format>.</para>
351         </remarks>
352         <summary>
353           <attribution license="cc4" from="Microsoft" modified="false" />
354           <para>Gets or sets the foreground color of the calendar title.</para>
355         </summary>
356       </Docs>
357       <AssemblyInfo>
358         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
359         <AssemblyVersion>2.0.0.0</AssemblyVersion>
360       </AssemblyInfo>
361     </Member>
362     <Member MemberName="CalendarTrailingForeColor">
363       <MemberSignature Language="C#" Value="public System.Drawing.Color CalendarTrailingForeColor { set; get; }" />
364       <MemberType>Property</MemberType>
365       <ReturnValue>
366         <ReturnType>System.Drawing.Color</ReturnType>
367       </ReturnValue>
368       <Docs>
369         <value>To be added.</value>
370         <remarks>
371           <attribution license="cc4" from="Microsoft" modified="false" />
372           <para>When a <see cref="T:System.Windows.Forms.DateTimePicker" /> is created, this property is initially set equal to the <see cref="F:System.Windows.Forms.DateTimePicker.DefaultTrailingForeColor" /> field value.</para>
373           <para>The trailing dates are the ending dates from the previous month or the beginning dates from the next month used to fill the calendar.</para>
374           <para>Starting with Windows Vista and depending on the theme, setting this property might not change the appearance of the calendar. For example, if Windows is set to use the Aero theme, setting this property has no effect. This is because an updated version of the calendar is rendered with an appearance that is derived at run time from the current operating system theme. If you want to use this property and enable the earlier version of the calendar, you can disable visual styles for your application. Disabling visual styles might affect the appearance and behavior of other controls in your application. To disable visual styles in Visual Basic, open the Project Designer and uncheck the <ui>Enable XP visual styles</ui> check box. To disable visual styles in C#, open Program.cs and comment out Application.EnableVisualStyles();. For more information about visual styles, see <format type="text/html"><a href="0a038ade-31cf-4e56-9cfe-7a1e6b83b57f">How to: Enable Windows XP Visual Styles</a></format>.</para>
375         </remarks>
376         <summary>
377           <attribution license="cc4" from="Microsoft" modified="false" />
378           <para>Gets or sets the foreground color of the calendar trailing dates.</para>
379         </summary>
380       </Docs>
381       <AssemblyInfo>
382         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
383         <AssemblyVersion>2.0.0.0</AssemblyVersion>
384       </AssemblyInfo>
385     </Member>
386     <Member MemberName="Checked">
387       <MemberSignature Language="C#" Value="public bool Checked { set; get; }" />
388       <MemberType>Property</MemberType>
389       <Attributes>
390         <Attribute>
391           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
392         </Attribute>
393         <Attribute>
394           <AttributeName>System.ComponentModel.Bindable(true)</AttributeName>
395         </Attribute>
396       </Attributes>
397       <ReturnValue>
398         <ReturnType>System.Boolean</ReturnType>
399       </ReturnValue>
400       <Docs>
401         <value>To be added.</value>
402         <remarks>
403           <attribution license="cc4" from="Microsoft" modified="false" />
404           <para>This property is used to obtain the state of the check box that is displayed if the <see cref="P:System.Windows.Forms.DateTimePicker.ShowCheckBox" /> property value is true. If the <see cref="P:System.Windows.Forms.DateTimePicker.Checked" /> property value is true, the <see cref="T:System.Windows.Forms.DateTimePicker" /> control displays the properly formatted <see cref="P:System.Windows.Forms.DateTimePicker.Value" /> property value; otherwise, the control displays the last valid date/time value assigned to the <see cref="P:System.Windows.Forms.DateTimePicker.Value" /> property or the current date and time (<see cref="P:System.DateTime.Now" />) if no value has ever been assigned.</para>
405         </remarks>
406         <summary>
407           <attribution license="cc4" from="Microsoft" modified="false" />
408           <para>Gets or sets a value indicating whether the <see cref="P:System.Windows.Forms.DateTimePicker.Value" /> property has been set with a valid date/time value and the displayed value is able to be updated.</para>
409         </summary>
410       </Docs>
411       <AssemblyInfo>
412         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
413         <AssemblyVersion>2.0.0.0</AssemblyVersion>
414       </AssemblyInfo>
415     </Member>
416     <Member MemberName="Click">
417       <MemberSignature Language="C#" Value="public event EventHandler Click;" />
418       <MemberType>Event</MemberType>
419       <AssemblyInfo>
420         <AssemblyVersion>2.0.0.0</AssemblyVersion>
421       </AssemblyInfo>
422       <Attributes>
423         <Attribute>
424           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
425         </Attribute>
426         <Attribute>
427           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
428         </Attribute>
429       </Attributes>
430       <ReturnValue>
431         <ReturnType>System.EventHandler</ReturnType>
432       </ReturnValue>
433       <Docs>
434         <remarks>
435           <attribution license="cc4" from="Microsoft" modified="false" />
436           <para>This event is not relevant for this class.</para>
437         </remarks>
438         <summary>
439           <attribution license="cc4" from="Microsoft" modified="false" />
440           <para>Occurs when the control is clicked.</para>
441         </summary>
442       </Docs>
443     </Member>
444     <Member MemberName="CloseUp">
445       <MemberSignature Language="C#" Value="public event EventHandler CloseUp;" />
446       <MemberType>Event</MemberType>
447       <ReturnValue>
448         <ReturnType>System.EventHandler</ReturnType>
449       </ReturnValue>
450       <Docs>
451         <remarks>
452           <attribution license="cc4" from="Microsoft" modified="false" />
453           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
454         </remarks>
455         <summary>
456           <attribution license="cc4" from="Microsoft" modified="false" />
457           <para>Occurs when the drop-down calendar is dismissed and disappears.</para>
458         </summary>
459       </Docs>
460       <AssemblyInfo>
461         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
462         <AssemblyVersion>2.0.0.0</AssemblyVersion>
463       </AssemblyInfo>
464     </Member>
465     <Member MemberName="CreateAccessibilityInstance">
466       <MemberSignature Language="C#" Value="protected override System.Windows.Forms.AccessibleObject CreateAccessibilityInstance ();" />
467       <MemberType>Method</MemberType>
468       <ReturnValue>
469         <ReturnType>System.Windows.Forms.AccessibleObject</ReturnType>
470       </ReturnValue>
471       <Parameters />
472       <Docs>
473         <remarks>
474           <attribution license="cc4" from="Microsoft" modified="false" />
475           <para>If you do not explicitly call the <see cref="M:System.Windows.Forms.DateTimePicker.CreateAccessibilityInstance" /> method, it will be called when the <see cref="P:System.Windows.Forms.Control.AccessibilityObject" /> property is referenced.</para>
476           <block subset="none" type="note">
477             <para>To get or set the <see cref="P:System.Windows.Forms.Control.AccessibilityObject" /> property, you must add a reference to the Accessibility assembly installed with the .NET Framework.</para>
478           </block>
479         </remarks>
480         <summary>
481           <attribution license="cc4" from="Microsoft" modified="false" />
482           <para>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</para>
483         </summary>
484         <returns>
485           <attribution license="cc4" from="Microsoft" modified="false" />
486           <para>A new <see cref="T:System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject" /> for the control.</para>
487         </returns>
488       </Docs>
489       <AssemblyInfo>
490         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
491         <AssemblyVersion>2.0.0.0</AssemblyVersion>
492       </AssemblyInfo>
493     </Member>
494     <Member MemberName="CreateHandle">
495       <MemberSignature Language="C#" Value="protected override void CreateHandle ();" />
496       <MemberType>Method</MemberType>
497       <ReturnValue>
498         <ReturnType>System.Void</ReturnType>
499       </ReturnValue>
500       <Parameters />
501       <Docs>
502         <remarks>To be added.</remarks>
503         <summary>
504           <attribution license="cc4" from="Microsoft" modified="false" />
505           <para>Creates the physical window handle.</para>
506         </summary>
507       </Docs>
508       <AssemblyInfo>
509         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
510         <AssemblyVersion>2.0.0.0</AssemblyVersion>
511       </AssemblyInfo>
512     </Member>
513     <Member MemberName="CreateParams">
514       <MemberSignature Language="C#" Value="protected override System.Windows.Forms.CreateParams CreateParams { get; }" />
515       <MemberType>Property</MemberType>
516       <ReturnValue>
517         <ReturnType>System.Windows.Forms.CreateParams</ReturnType>
518       </ReturnValue>
519       <Docs>
520         <value>To be added.</value>
521         <remarks>To be added.</remarks>
522         <summary>
523           <attribution license="cc4" from="Microsoft" modified="false" />
524           <para>Returns the <see cref="T:System.Windows.Forms.CreateParams" /> used to create this window.</para>
525         </summary>
526       </Docs>
527       <AssemblyInfo>
528         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
529         <AssemblyVersion>2.0.0.0</AssemblyVersion>
530       </AssemblyInfo>
531     </Member>
532     <Member MemberName="CustomFormat">
533       <MemberSignature Language="C#" Value="public string CustomFormat { set; get; }" />
534       <MemberType>Property</MemberType>
535       <Attributes>
536         <Attribute>
537           <AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.Repaint)</AttributeName>
538         </Attribute>
539         <Attribute>
540           <AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
541         </Attribute>
542         <Attribute>
543           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
544         </Attribute>
545       </Attributes>
546       <ReturnValue>
547         <ReturnType>System.String</ReturnType>
548       </ReturnValue>
549       <Docs>
550         <value>To be added.</value>
551         <remarks>
552           <attribution license="cc4" from="Microsoft" modified="false" />
553           <para>To display string literals that contain date and time separators or to format strings, you must use escape characters in the substring. For example, to display the date as "June 15 at 12:00 PM", set the <see cref="P:System.Windows.Forms.DateTimePicker.CustomFormat" /> property to "MMMM dd 'at' t:mm tt". If the "at" substring is not enclosed by escape characters, the result is "June 15 aP 12:00PM" because the "t" character is read as the one-letter A.M./P.M. format string (see the format string table below).</para>
554           <para>The format strings can be combined to format the date and time. For example, to display the date and time as 06/15/2001 12:00 PM, this property should be set to "MM'/'dd'/'yyyy hh':'mm tt". For more information, see <format type="text/html"><a href="98b374e3-0cc2-4c78-ab44-efb671d71984">Custom Date and Time Format Strings</a></format>.</para>
555           <block subset="none" type="note">
556             <para>The <see cref="P:System.Windows.Forms.DateTimePicker.Format" /> property must be set to <see cref="F:System.Windows.Forms.DateTimePickerFormat.Custom" /> for this property to affect the formatting of the displayed date and time.</para>
557           </block>
558           <para>The following table lists all the valid format strings and their descriptions.</para>
559           <list type="table">
560             <listheader>
561               <item>
562                 <term>
563                   <para>Format string </para>
564                 </term>
565                 <description>
566                   <para>Description </para>
567                 </description>
568               </item>
569             </listheader>
570             <item>
571               <term>
572                 <para>d </para>
573               </term>
574               <description>
575                 <para>The one- or two-digit day. </para>
576               </description>
577             </item>
578             <item>
579               <term>
580                 <para>dd </para>
581               </term>
582               <description>
583                 <para>The two-digit day. Single-digit day values are preceded by a 0. </para>
584               </description>
585             </item>
586             <item>
587               <term>
588                 <para>ddd </para>
589               </term>
590               <description>
591                 <para>The three-character day-of-week abbreviation. </para>
592               </description>
593             </item>
594             <item>
595               <term>
596                 <para>dddd </para>
597               </term>
598               <description>
599                 <para>The full day-of-week name. </para>
600               </description>
601             </item>
602             <item>
603               <term>
604                 <para>h </para>
605               </term>
606               <description>
607                 <para>The one- or two-digit hour in 12-hour format. </para>
608               </description>
609             </item>
610             <item>
611               <term>
612                 <para>hh </para>
613               </term>
614               <description>
615                 <para>The two-digit hour in 12-hour format. Single digit values are preceded by a 0. </para>
616               </description>
617             </item>
618             <item>
619               <term>
620                 <para>H </para>
621               </term>
622               <description>
623                 <para>The one- or two-digit hour in 24-hour format. </para>
624               </description>
625             </item>
626             <item>
627               <term>
628                 <para>HH </para>
629               </term>
630               <description>
631                 <para>The two-digit hour in 24-hour format. Single digit values are preceded by a 0. </para>
632               </description>
633             </item>
634             <item>
635               <term>
636                 <para>m </para>
637               </term>
638               <description>
639                 <para>The one- or two-digit minute. </para>
640               </description>
641             </item>
642             <item>
643               <term>
644                 <para>mm </para>
645               </term>
646               <description>
647                 <para>The two-digit minute. Single digit values are preceded by a 0. </para>
648               </description>
649             </item>
650             <item>
651               <term>
652                 <para>M </para>
653               </term>
654               <description>
655                 <para>The one- or two-digit month number. </para>
656               </description>
657             </item>
658             <item>
659               <term>
660                 <para>MM </para>
661               </term>
662               <description>
663                 <para>The two-digit month number. Single digit values are preceded by a 0. </para>
664               </description>
665             </item>
666             <item>
667               <term>
668                 <para>MMM </para>
669               </term>
670               <description>
671                 <para>The three-character month abbreviation. </para>
672               </description>
673             </item>
674             <item>
675               <term>
676                 <para>MMMM </para>
677               </term>
678               <description>
679                 <para>The full month name. </para>
680               </description>
681             </item>
682             <item>
683               <term>
684                 <para>s </para>
685               </term>
686               <description>
687                 <para>The one- or two-digit seconds. </para>
688               </description>
689             </item>
690             <item>
691               <term>
692                 <para>ss </para>
693               </term>
694               <description>
695                 <para>The two-digit seconds. Single digit values are preceded by a 0. </para>
696               </description>
697             </item>
698             <item>
699               <term>
700                 <para>t </para>
701               </term>
702               <description>
703                 <para>The one-letter A.M./P.M. abbreviation (A.M. is displayed as "A"). </para>
704               </description>
705             </item>
706             <item>
707               <term>
708                 <para>tt </para>
709               </term>
710               <description>
711                 <para>The two-letter A.M./P.M. abbreviation (A.M. is displayed as "AM"). </para>
712               </description>
713             </item>
714             <item>
715               <term>
716                 <para>y </para>
717               </term>
718               <description>
719                 <para>The one-digit year (2001 is displayed as "1"). </para>
720               </description>
721             </item>
722             <item>
723               <term>
724                 <para>yy </para>
725               </term>
726               <description>
727                 <para>The last two digits of the year (2001 is displayed as "01"). </para>
728               </description>
729             </item>
730             <item>
731               <term>
732                 <para>yyyy </para>
733               </term>
734               <description>
735                 <para>The full year (2001 is displayed as "2001"). </para>
736               </description>
737             </item>
738           </list>
739         </remarks>
740         <summary>
741           <attribution license="cc4" from="Microsoft" modified="false" />
742           <para>Gets or sets the custom date/time format string.</para>
743         </summary>
744       </Docs>
745       <AssemblyInfo>
746         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
747         <AssemblyVersion>2.0.0.0</AssemblyVersion>
748       </AssemblyInfo>
749     </Member>
750     <Member MemberName="DefaultMonthBackColor">
751       <MemberSignature Language="C#" Value="protected static readonly System.Drawing.Color DefaultMonthBackColor;" />
752       <MemberType>Field</MemberType>
753       <ReturnValue>
754         <ReturnType>System.Drawing.Color</ReturnType>
755       </ReturnValue>
756       <Docs>
757         <remarks>To be added.</remarks>
758         <summary>
759           <attribution license="cc4" from="Microsoft" modified="false" />
760           <para>Specifies the default month background color of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control. This field is read-only.</para>
761         </summary>
762       </Docs>
763       <AssemblyInfo>
764         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
765         <AssemblyVersion>2.0.0.0</AssemblyVersion>
766       </AssemblyInfo>
767     </Member>
768     <Member MemberName="DefaultSize">
769       <MemberSignature Language="C#" Value="protected override System.Drawing.Size DefaultSize { get; }" />
770       <MemberType>Property</MemberType>
771       <ReturnValue>
772         <ReturnType>System.Drawing.Size</ReturnType>
773       </ReturnValue>
774       <Docs>
775         <summary>To be added.</summary>
776         <value>To be added.</value>
777         <remarks>To be added.</remarks>
778       </Docs>
779       <AssemblyInfo>
780         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
781         <AssemblyVersion>2.0.0.0</AssemblyVersion>
782       </AssemblyInfo>
783     </Member>
784     <Member MemberName="DefaultTitleBackColor">
785       <MemberSignature Language="C#" Value="protected static readonly System.Drawing.Color DefaultTitleBackColor;" />
786       <MemberType>Field</MemberType>
787       <ReturnValue>
788         <ReturnType>System.Drawing.Color</ReturnType>
789       </ReturnValue>
790       <Docs>
791         <remarks>To be added.</remarks>
792         <summary>
793           <attribution license="cc4" from="Microsoft" modified="false" />
794           <para>Specifies the default title back color of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control. This field is read-only.</para>
795         </summary>
796       </Docs>
797       <AssemblyInfo>
798         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
799         <AssemblyVersion>2.0.0.0</AssemblyVersion>
800       </AssemblyInfo>
801     </Member>
802     <Member MemberName="DefaultTitleForeColor">
803       <MemberSignature Language="C#" Value="protected static readonly System.Drawing.Color DefaultTitleForeColor;" />
804       <MemberType>Field</MemberType>
805       <ReturnValue>
806         <ReturnType>System.Drawing.Color</ReturnType>
807       </ReturnValue>
808       <Docs>
809         <remarks>To be added.</remarks>
810         <summary>
811           <attribution license="cc4" from="Microsoft" modified="false" />
812           <para>Specifies the default title foreground color of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control. This field is read-only.</para>
813         </summary>
814       </Docs>
815       <AssemblyInfo>
816         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
817         <AssemblyVersion>2.0.0.0</AssemblyVersion>
818       </AssemblyInfo>
819     </Member>
820     <Member MemberName="DefaultTrailingForeColor">
821       <MemberSignature Language="C#" Value="protected static readonly System.Drawing.Color DefaultTrailingForeColor;" />
822       <MemberType>Field</MemberType>
823       <ReturnValue>
824         <ReturnType>System.Drawing.Color</ReturnType>
825       </ReturnValue>
826       <Docs>
827         <remarks>To be added.</remarks>
828         <summary>
829           <attribution license="cc4" from="Microsoft" modified="false" />
830           <para>Specifies the default trailing foreground color of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control. This field is read-only.</para>
831         </summary>
832       </Docs>
833       <AssemblyInfo>
834         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
835         <AssemblyVersion>2.0.0.0</AssemblyVersion>
836       </AssemblyInfo>
837     </Member>
838     <Member MemberName="DestroyHandle">
839       <MemberSignature Language="C#" Value="protected override void DestroyHandle ();" />
840       <MemberType>Method</MemberType>
841       <ReturnValue>
842         <ReturnType>System.Void</ReturnType>
843       </ReturnValue>
844       <Parameters />
845       <Docs>
846         <remarks>To be added.</remarks>
847         <summary>
848           <attribution license="cc4" from="Microsoft" modified="false" />
849           <para>Destroys the physical window handle.</para>
850         </summary>
851       </Docs>
852       <AssemblyInfo>
853         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
854         <AssemblyVersion>2.0.0.0</AssemblyVersion>
855       </AssemblyInfo>
856     </Member>
857     <Member MemberName="Dispose">
858       <MemberSignature Language="C#" Value="protected override void Dispose (bool disposing);" />
859       <MemberType>Method</MemberType>
860       <ReturnValue>
861         <ReturnType>System.Void</ReturnType>
862       </ReturnValue>
863       <Parameters>
864         <Parameter Name="disposing" Type="System.Boolean" />
865       </Parameters>
866       <Docs>
867         <param name="disposing">To be added.</param>
868         <summary>To be added.</summary>
869         <remarks>To be added.</remarks>
870       </Docs>
871       <AssemblyInfo>
872         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
873       </AssemblyInfo>
874     </Member>
875     <Member MemberName="DoubleBuffered">
876       <MemberSignature Language="C#" Value="protected override bool DoubleBuffered { set; get; }" />
877       <MemberType>Property</MemberType>
878       <AssemblyInfo>
879         <AssemblyVersion>2.0.0.0</AssemblyVersion>
880       </AssemblyInfo>
881       <Attributes>
882         <Attribute>
883           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
884         </Attribute>
885       </Attributes>
886       <ReturnValue>
887         <ReturnType>System.Boolean</ReturnType>
888       </ReturnValue>
889       <Docs>
890         <value>To be added.</value>
891         <remarks>
892           <attribution license="cc4" from="Microsoft" modified="false" />
893           <para>Setting the <see cref="P:System.Windows.Forms.DateTimePicker.DoubleBuffered" /> property has no effect on the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</para>
894         </remarks>
895         <summary>
896           <attribution license="cc4" from="Microsoft" modified="false" />
897           <para>Gets or sets a value indicating whether the control should redraw its surface using a secondary buffer. Setting this property has no effect on the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</para>
898         </summary>
899       </Docs>
900     </Member>
901     <Member MemberName="DoubleClick">
902       <MemberSignature Language="C#" Value="public event EventHandler DoubleClick;" />
903       <MemberType>Event</MemberType>
904       <AssemblyInfo>
905         <AssemblyVersion>2.0.0.0</AssemblyVersion>
906       </AssemblyInfo>
907       <Attributes>
908         <Attribute>
909           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
910         </Attribute>
911         <Attribute>
912           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
913         </Attribute>
914       </Attributes>
915       <ReturnValue>
916         <ReturnType>System.EventHandler</ReturnType>
917       </ReturnValue>
918       <Docs>
919         <remarks>
920           <attribution license="cc4" from="Microsoft" modified="false" />
921           <para>The event is not relevant for this class.</para>
922         </remarks>
923         <summary>
924           <attribution license="cc4" from="Microsoft" modified="false" />
925           <para>Occurs when the control is double-clicked.</para>
926         </summary>
927       </Docs>
928     </Member>
929     <Member MemberName="DropDown">
930       <MemberSignature Language="C#" Value="public event EventHandler DropDown;" />
931       <MemberType>Event</MemberType>
932       <ReturnValue>
933         <ReturnType>System.EventHandler</ReturnType>
934       </ReturnValue>
935       <Docs>
936         <remarks>
937           <attribution license="cc4" from="Microsoft" modified="false" />
938           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
939         </remarks>
940         <summary>
941           <attribution license="cc4" from="Microsoft" modified="false" />
942           <para>Occurs when the drop-down calendar is shown.</para>
943         </summary>
944       </Docs>
945       <AssemblyInfo>
946         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
947         <AssemblyVersion>2.0.0.0</AssemblyVersion>
948       </AssemblyInfo>
949     </Member>
950     <Member MemberName="DropDownAlign">
951       <MemberSignature Language="C#" Value="public System.Windows.Forms.LeftRightAlignment DropDownAlign { set; get; }" />
952       <MemberType>Property</MemberType>
953       <Attributes>
954         <Attribute>
955           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
956         </Attribute>
957         <Attribute>
958           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.LeftRightAlignment.Left)</AttributeName>
959         </Attribute>
960       </Attributes>
961       <ReturnValue>
962         <ReturnType>System.Windows.Forms.LeftRightAlignment</ReturnType>
963       </ReturnValue>
964       <Docs>
965         <value>To be added.</value>
966         <remarks>
967           <attribution license="cc4" from="Microsoft" modified="false" />
968           <para>The drop-down calendar can be aligned to the left or right of the control.</para>
969         </remarks>
970         <summary>
971           <attribution license="cc4" from="Microsoft" modified="false" />
972           <para>Gets or sets the alignment of the drop-down calendar on the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</para>
973         </summary>
974       </Docs>
975       <AssemblyInfo>
976         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
977         <AssemblyVersion>2.0.0.0</AssemblyVersion>
978       </AssemblyInfo>
979     </Member>
980     <Member MemberName="ForeColor">
981       <MemberSignature Language="C#" Value="public override System.Drawing.Color ForeColor { set; get; }" />
982       <MemberType>Property</MemberType>
983       <Attributes>
984         <Attribute>
985           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
986         </Attribute>
987         <Attribute>
988           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
989         </Attribute>
990       </Attributes>
991       <ReturnValue>
992         <ReturnType>System.Drawing.Color</ReturnType>
993       </ReturnValue>
994       <Docs>
995         <value>To be added.</value>
996         <remarks>
997           <attribution license="cc4" from="Microsoft" modified="false" />
998           <para>Setting the <see cref="P:System.Windows.Forms.DateTimePicker.ForeColor" /> property has no effect on the appearance of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</para>
999           <para>To set the foreground color for the drop-down calendar of the <see cref="T:System.Windows.Forms.DateTimePicker" />, see the <see cref="P:System.Windows.Forms.DateTimePicker.CalendarForeColor" /> property.</para>
1000         </remarks>
1001         <summary>
1002           <attribution license="cc4" from="Microsoft" modified="false" />
1003           <para>Gets or sets the foreground color of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</para>
1004         </summary>
1005       </Docs>
1006       <AssemblyInfo>
1007         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1008         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1009       </AssemblyInfo>
1010     </Member>
1011     <Member MemberName="ForeColorChanged">
1012       <MemberSignature Language="C#" Value="public event EventHandler ForeColorChanged;" />
1013       <MemberType>Event</MemberType>
1014       <Attributes>
1015         <Attribute>
1016           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1017         </Attribute>
1018         <Attribute>
1019           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1020         </Attribute>
1021       </Attributes>
1022       <ReturnValue>
1023         <ReturnType>System.EventHandler</ReturnType>
1024       </ReturnValue>
1025       <Docs>
1026         <remarks>
1027           <attribution license="cc4" from="Microsoft" modified="false" />
1028           <para>This event is raised if the <see cref="P:System.Windows.Forms.DateTimePicker.ForeColor" /> property is changed either by a programmatic modification or through interaction.</para>
1029           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
1030         </remarks>
1031         <summary>
1032           <attribution license="cc4" from="Microsoft" modified="false" />
1033           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DateTimePicker.ForeColor" /> property changes.</para>
1034         </summary>
1035       </Docs>
1036       <AssemblyInfo>
1037         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1038         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1039       </AssemblyInfo>
1040     </Member>
1041     <Member MemberName="Format">
1042       <MemberSignature Language="C#" Value="public System.Windows.Forms.DateTimePickerFormat Format { set; get; }" />
1043       <MemberType>Property</MemberType>
1044       <Attributes>
1045         <Attribute>
1046           <AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.Repaint)</AttributeName>
1047         </Attribute>
1048       </Attributes>
1049       <ReturnValue>
1050         <ReturnType>System.Windows.Forms.DateTimePickerFormat</ReturnType>
1051       </ReturnValue>
1052       <Docs>
1053         <value>To be added.</value>
1054         <remarks>
1055           <attribution license="cc4" from="Microsoft" modified="false" />
1056           <para>This property determines the date/time format the date is displayed in. The date/time format is based on the user's regional settings in their operating system.</para>
1057           <block subset="none" type="note">
1058             <para>The <see cref="P:System.Windows.Forms.DateTimePicker.Format" /> property must be set to <see cref="F:System.Windows.Forms.DateTimePickerFormat.Custom" /> for the <see cref="P:System.Windows.Forms.DateTimePicker.CustomFormat" /> property to affect the formatting of the displayed date and time.</para>
1059           </block>
1060           <para>To display only time in a <see cref="T:System.Windows.Forms.DateTimePicker" />, set the <see cref="P:System.Windows.Forms.DateTimePicker.Format" /> to <see cref="F:System.Windows.Forms.DateTimePickerFormat.Time" />, and the <see cref="P:System.Windows.Forms.DateTimePicker.ShowUpDown" /> property to true.</para>
1061         </remarks>
1062         <summary>
1063           <attribution license="cc4" from="Microsoft" modified="false" />
1064           <para>Gets or sets the format of the date and time displayed in the control.</para>
1065         </summary>
1066       </Docs>
1067       <AssemblyInfo>
1068         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1069         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1070       </AssemblyInfo>
1071     </Member>
1072     <Member MemberName="FormatChanged">
1073       <MemberSignature Language="C#" Value="public event EventHandler FormatChanged;" />
1074       <MemberType>Event</MemberType>
1075       <ReturnValue>
1076         <ReturnType>System.EventHandler</ReturnType>
1077       </ReturnValue>
1078       <Docs>
1079         <remarks>
1080           <attribution license="cc4" from="Microsoft" modified="false" />
1081           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
1082         </remarks>
1083         <summary>
1084           <attribution license="cc4" from="Microsoft" modified="false" />
1085           <para>Occurs when the <see cref="P:System.Windows.Forms.DateTimePicker.Format" /> property value has changed.</para>
1086         </summary>
1087       </Docs>
1088       <AssemblyInfo>
1089         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1090         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1091       </AssemblyInfo>
1092     </Member>
1093     <Member MemberName="IsInputKey">
1094       <MemberSignature Language="C#" Value="protected override bool IsInputKey (System.Windows.Forms.Keys keyData);" />
1095       <MemberType>Method</MemberType>
1096       <ReturnValue>
1097         <ReturnType>System.Boolean</ReturnType>
1098       </ReturnValue>
1099       <Parameters>
1100         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
1101       </Parameters>
1102       <Docs>
1103         <remarks>
1104           <attribution license="cc4" from="Microsoft" modified="false" />
1105           <para>Call this method during window-message preprocessing to determine whether the specified key is a regular input key that should be sent directly to the control or a special key (such as PAGE UP and PAGE DOWN) that should preprocessed. In the latter case, send the key to the control only if it is not consumed by the preprocessing phase.</para>
1106         </remarks>
1107         <summary>
1108           <attribution license="cc4" from="Microsoft" modified="false" />
1109           <para>Determines whether the specified key is a regular input key or a special key that requires preprocessing.</para>
1110         </summary>
1111         <returns>
1112           <attribution license="cc4" from="Microsoft" modified="false" />
1113           <para>true if the specified key is a regular input key; otherwise, false.</para>
1114         </returns>
1115         <param name="keyData">
1116           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.Keys" /> values. </param>
1117       </Docs>
1118       <AssemblyInfo>
1119         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1120         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1121       </AssemblyInfo>
1122     </Member>
1123     <Member MemberName="MaxDate">
1124       <MemberSignature Language="C#" Value="public DateTime MaxDate { set; get; }" />
1125       <MemberType>Property</MemberType>
1126       <ReturnValue>
1127         <ReturnType>System.DateTime</ReturnType>
1128       </ReturnValue>
1129       <Docs>
1130         <value>To be added.</value>
1131         <remarks>To be added.</remarks>
1132         <summary>
1133           <attribution license="cc4" from="Microsoft" modified="false" />
1134           <para>Gets or sets the maximum date and time that can be selected in the control.</para>
1135         </summary>
1136       </Docs>
1137       <AssemblyInfo>
1138         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1139         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1140       </AssemblyInfo>
1141     </Member>
1142     <Member MemberName="MaxDateTime">
1143       <MemberSignature Language="C#" Value="public static readonly DateTime MaxDateTime = 12/31/9998 12:00:00 AM;" />
1144       <MemberType>Field</MemberType>
1145       <ReturnValue>
1146         <ReturnType>System.DateTime</ReturnType>
1147       </ReturnValue>
1148       <MemberValue>12/31/9998 12:00:00 AM</MemberValue>
1149       <Docs>
1150         <remarks>
1151           <attribution license="cc4" from="Microsoft" modified="false" />
1152           <para>The maximum date is set to 12/31/9998 23:59:59.</para>
1153         </remarks>
1154         <summary>
1155           <attribution license="cc4" from="Microsoft" modified="false" />
1156           <para>Specifies the maximum date value of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control. This field is read-only.</para>
1157         </summary>
1158       </Docs>
1159       <AssemblyInfo>
1160         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1161         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1162       </AssemblyInfo>
1163       <Attributes>
1164         <Attribute>
1165           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1166         </Attribute>
1167         <Attribute>
1168           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1169         </Attribute>
1170       </Attributes>
1171     </Member>
1172     <Member MemberName="MaximumDateTime">
1173       <MemberSignature Language="C#" Value="public static DateTime MaximumDateTime { get; }" />
1174       <MemberType>Property</MemberType>
1175       <AssemblyInfo>
1176         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1177       </AssemblyInfo>
1178       <ReturnValue>
1179         <ReturnType>System.DateTime</ReturnType>
1180       </ReturnValue>
1181       <Docs>
1182         <value>To be added.</value>
1183         <remarks>
1184           <attribution license="cc4" from="Microsoft" modified="false" />
1185           <para>The maximum date is set to December 31, 9998.</para>
1186         </remarks>
1187         <summary>
1188           <attribution license="cc4" from="Microsoft" modified="false" />
1189           <para>Gets the maximum date value allowed for the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</para>
1190         </summary>
1191       </Docs>
1192     </Member>
1193     <Member MemberName="MinDate">
1194       <MemberSignature Language="C#" Value="public DateTime MinDate { set; get; }" />
1195       <MemberType>Property</MemberType>
1196       <ReturnValue>
1197         <ReturnType>System.DateTime</ReturnType>
1198       </ReturnValue>
1199       <Docs>
1200         <value>To be added.</value>
1201         <remarks>To be added.</remarks>
1202         <summary>
1203           <attribution license="cc4" from="Microsoft" modified="false" />
1204           <para>Gets or sets the minimum date and time that can be selected in the control.</para>
1205         </summary>
1206       </Docs>
1207       <AssemblyInfo>
1208         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1209         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1210       </AssemblyInfo>
1211     </Member>
1212     <Member MemberName="MinDateTime">
1213       <MemberSignature Language="C#" Value="public static readonly DateTime MinDateTime = 1/1/1753 12:00:00 AM;" />
1214       <MemberType>Field</MemberType>
1215       <ReturnValue>
1216         <ReturnType>System.DateTime</ReturnType>
1217       </ReturnValue>
1218       <MemberValue>1/1/1753 12:00:00 AM</MemberValue>
1219       <Docs>
1220         <remarks>
1221           <attribution license="cc4" from="Microsoft" modified="false" />
1222           <para>The minimum date is set to 1/1/1753 00:00:00.</para>
1223         </remarks>
1224         <summary>
1225           <attribution license="cc4" from="Microsoft" modified="false" />
1226           <para>Gets the minimum date value of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control. </para>
1227         </summary>
1228       </Docs>
1229       <AssemblyInfo>
1230         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1231         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1232       </AssemblyInfo>
1233       <Attributes>
1234         <Attribute>
1235           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1236         </Attribute>
1237         <Attribute>
1238           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1239         </Attribute>
1240       </Attributes>
1241     </Member>
1242     <Member MemberName="MinimumDateTime">
1243       <MemberSignature Language="C#" Value="public static DateTime MinimumDateTime { get; }" />
1244       <MemberType>Property</MemberType>
1245       <AssemblyInfo>
1246         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1247       </AssemblyInfo>
1248       <ReturnValue>
1249         <ReturnType>System.DateTime</ReturnType>
1250       </ReturnValue>
1251       <Docs>
1252         <value>To be added.</value>
1253         <remarks>
1254           <attribution license="cc4" from="Microsoft" modified="false" />
1255           <para>The minimum date is set to January 1, 1753.</para>
1256         </remarks>
1257         <summary>
1258           <attribution license="cc4" from="Microsoft" modified="false" />
1259           <para>Gets the minimum date value allowed for the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</para>
1260         </summary>
1261       </Docs>
1262     </Member>
1263     <Member MemberName="MouseClick">
1264       <MemberSignature Language="C#" Value="public event System.Windows.Forms.MouseEventHandler MouseClick;" />
1265       <MemberType>Event</MemberType>
1266       <AssemblyInfo>
1267         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1268       </AssemblyInfo>
1269       <Attributes>
1270         <Attribute>
1271           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1272         </Attribute>
1273         <Attribute>
1274           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1275         </Attribute>
1276       </Attributes>
1277       <ReturnValue>
1278         <ReturnType>System.Windows.Forms.MouseEventHandler</ReturnType>
1279       </ReturnValue>
1280       <Docs>
1281         <remarks>
1282           <attribution license="cc4" from="Microsoft" modified="false" />
1283           <para>The event is not relevant for this class.</para>
1284         </remarks>
1285         <summary>
1286           <attribution license="cc4" from="Microsoft" modified="false" />
1287           <para>Occurs when the control is clicked with the mouse.</para>
1288         </summary>
1289       </Docs>
1290     </Member>
1291     <Member MemberName="MouseDoubleClick">
1292       <MemberSignature Language="C#" Value="public event System.Windows.Forms.MouseEventHandler MouseDoubleClick;" />
1293       <MemberType>Event</MemberType>
1294       <AssemblyInfo>
1295         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1296       </AssemblyInfo>
1297       <Attributes>
1298         <Attribute>
1299           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1300         </Attribute>
1301         <Attribute>
1302           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1303         </Attribute>
1304       </Attributes>
1305       <ReturnValue>
1306         <ReturnType>System.Windows.Forms.MouseEventHandler</ReturnType>
1307       </ReturnValue>
1308       <Docs>
1309         <remarks>
1310           <attribution license="cc4" from="Microsoft" modified="false" />
1311           <para>The event is not relevant for this class.</para>
1312         </remarks>
1313         <summary>
1314           <attribution license="cc4" from="Microsoft" modified="false" />
1315           <para>Occurs when the control is double-clicked with the mouse.</para>
1316         </summary>
1317       </Docs>
1318     </Member>
1319     <Member MemberName="OnCloseUp">
1320       <MemberSignature Language="C#" Value="protected virtual void OnCloseUp (EventArgs eventargs);" />
1321       <MemberType>Method</MemberType>
1322       <ReturnValue>
1323         <ReturnType>System.Void</ReturnType>
1324       </ReturnValue>
1325       <Parameters>
1326         <Parameter Name="eventargs" Type="System.EventArgs" />
1327       </Parameters>
1328       <Docs>
1329         <remarks>
1330           <attribution license="cc4" from="Microsoft" modified="false" />
1331           <para>The <see cref="E:System.Windows.Forms.DateTimePicker.CloseUp" /> event occurs when the drop-down calendar is dismissed and disappears.</para>
1332           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
1333           <para>The <see cref="M:System.Windows.Forms.DateTimePicker.OnCloseUp(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
1334         </remarks>
1335         <summary>
1336           <attribution license="cc4" from="Microsoft" modified="false" />
1337           <para>Raises the <see cref="E:System.Windows.Forms.DateTimePicker.CloseUp" /> event.</para>
1338         </summary>
1339         <param name="eventargs">
1340           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1341       </Docs>
1342       <AssemblyInfo>
1343         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1344         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1345       </AssemblyInfo>
1346     </Member>
1347     <Member MemberName="OnDropDown">
1348       <MemberSignature Language="C#" Value="protected virtual void OnDropDown (EventArgs eventargs);" />
1349       <MemberType>Method</MemberType>
1350       <ReturnValue>
1351         <ReturnType>System.Void</ReturnType>
1352       </ReturnValue>
1353       <Parameters>
1354         <Parameter Name="eventargs" Type="System.EventArgs" />
1355       </Parameters>
1356       <Docs>
1357         <remarks>
1358           <attribution license="cc4" from="Microsoft" modified="false" />
1359           <para>The <see cref="E:System.Windows.Forms.DateTimePicker.DropDown" /> event occurs when the drop-down calendar is shown.</para>
1360           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
1361           <para>The <see cref="M:System.Windows.Forms.DateTimePicker.OnDropDown(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
1362         </remarks>
1363         <summary>
1364           <attribution license="cc4" from="Microsoft" modified="false" />
1365           <para>Raises the <see cref="E:System.Windows.Forms.DateTimePicker.DropDown" /> event.</para>
1366         </summary>
1367         <param name="eventargs">
1368           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1369       </Docs>
1370       <AssemblyInfo>
1371         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1372         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1373       </AssemblyInfo>
1374     </Member>
1375     <Member MemberName="OnFontChanged">
1376       <MemberSignature Language="C#" Value="protected override void OnFontChanged (EventArgs e);" />
1377       <MemberType>Method</MemberType>
1378       <ReturnValue>
1379         <ReturnType>System.Void</ReturnType>
1380       </ReturnValue>
1381       <Parameters>
1382         <Parameter Name="e" Type="System.EventArgs" />
1383       </Parameters>
1384       <Docs>
1385         <remarks>
1386           <attribution license="cc4" from="Microsoft" modified="false" />
1387           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
1388           <para>The <see cref="M:System.Windows.Forms.DateTimePicker.OnFontChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
1389         </remarks>
1390         <summary>
1391           <attribution license="cc4" from="Microsoft" modified="false" />
1392           <para>Raises the <see cref="E:System.Windows.Forms.Control.FontChanged" /> event.</para>
1393         </summary>
1394         <returns>
1395           <attribution license="cc4" from="Microsoft" modified="false" />
1396           <para>The <see cref="T:System.Windows.Forms.DateTimePicker" /> control automatically recalculates its height to fit the new font.</para>
1397         </returns>
1398         <param name="e">
1399           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
1400       </Docs>
1401       <AssemblyInfo>
1402         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1403         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1404       </AssemblyInfo>
1405     </Member>
1406     <Member MemberName="OnFormatChanged">
1407       <MemberSignature Language="C#" Value="protected virtual void OnFormatChanged (EventArgs e);" />
1408       <MemberType>Method</MemberType>
1409       <ReturnValue>
1410         <ReturnType>System.Void</ReturnType>
1411       </ReturnValue>
1412       <Parameters>
1413         <Parameter Name="e" Type="System.EventArgs" />
1414       </Parameters>
1415       <Docs>
1416         <remarks>
1417           <attribution license="cc4" from="Microsoft" modified="false" />
1418           <para>The <see cref="E:System.Windows.Forms.DateTimePicker.FormatChanged" /> event occurs when the <see cref="P:System.Windows.Forms.DateTimePicker.Format" /> property value has changed.</para>
1419           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
1420           <para>The <see cref="M:System.Windows.Forms.DateTimePicker.OnFormatChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
1421         </remarks>
1422         <summary>
1423           <attribution license="cc4" from="Microsoft" modified="false" />
1424           <para>Raises the <see cref="E:System.Windows.Forms.DateTimePicker.FormatChanged" /> event.</para>
1425         </summary>
1426         <param name="e">
1427           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1428       </Docs>
1429       <AssemblyInfo>
1430         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1431         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1432       </AssemblyInfo>
1433     </Member>
1434     <Member MemberName="OnHandleCreated">
1435       <MemberSignature Language="C#" Value="protected override void OnHandleCreated (EventArgs e);" />
1436       <MemberType>Method</MemberType>
1437       <AssemblyInfo>
1438         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1439       </AssemblyInfo>
1440       <ReturnValue>
1441         <ReturnType>System.Void</ReturnType>
1442       </ReturnValue>
1443       <Parameters>
1444         <Parameter Name="e" Type="System.EventArgs" />
1445       </Parameters>
1446       <Docs>
1447         <remarks>
1448           <attribution license="cc4" from="Microsoft" modified="false" />
1449           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
1450           <para>The <see cref="M:System.Windows.Forms.DateTimePicker.OnHandleCreated(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
1451         </remarks>
1452         <summary>
1453           <attribution license="cc4" from="Microsoft" modified="false" />
1454           <para>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</para>
1455         </summary>
1456         <param name="e">
1457           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1458       </Docs>
1459     </Member>
1460     <Member MemberName="OnHandleDestroyed">
1461       <MemberSignature Language="C#" Value="protected override void OnHandleDestroyed (EventArgs e);" />
1462       <MemberType>Method</MemberType>
1463       <AssemblyInfo>
1464         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1465       </AssemblyInfo>
1466       <ReturnValue>
1467         <ReturnType>System.Void</ReturnType>
1468       </ReturnValue>
1469       <Parameters>
1470         <Parameter Name="e" Type="System.EventArgs" />
1471       </Parameters>
1472       <Docs>
1473         <remarks>
1474           <attribution license="cc4" from="Microsoft" modified="false" />
1475           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
1476           <para>The <see cref="M:System.Windows.Forms.DateTimePicker.OnHandleDestroyed(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
1477         </remarks>
1478         <summary>
1479           <attribution license="cc4" from="Microsoft" modified="false" />
1480           <para>Raises the <see cref="E:System.Windows.Forms.Control.HandleDestroyed" /> event.</para>
1481         </summary>
1482         <param name="e">
1483           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
1484       </Docs>
1485     </Member>
1486     <Member MemberName="OnRightToLeftLayoutChanged">
1487       <MemberSignature Language="C#" Value="protected virtual void OnRightToLeftLayoutChanged (EventArgs e);" />
1488       <MemberType>Method</MemberType>
1489       <AssemblyInfo>
1490         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1491       </AssemblyInfo>
1492       <Attributes>
1493         <Attribute>
1494           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1495         </Attribute>
1496       </Attributes>
1497       <ReturnValue>
1498         <ReturnType>System.Void</ReturnType>
1499       </ReturnValue>
1500       <Parameters>
1501         <Parameter Name="e" Type="System.EventArgs" />
1502       </Parameters>
1503       <Docs>
1504         <remarks>
1505           <attribution license="cc4" from="Microsoft" modified="false" />
1506           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
1507           <para>The <see cref="M:System.Windows.Forms.DateTimePicker.OnRightToLeftLayoutChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
1508         </remarks>
1509         <summary>
1510           <attribution license="cc4" from="Microsoft" modified="false" />
1511           <para>Raises the <see cref="P:System.Windows.Forms.DateTimePicker.RightToLeftLayout" /> event. </para>
1512         </summary>
1513         <param name="e">
1514           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1515       </Docs>
1516     </Member>
1517     <Member MemberName="OnSystemColorsChanged">
1518       <MemberSignature Language="C#" Value="protected override void OnSystemColorsChanged (EventArgs e);" />
1519       <MemberType>Method</MemberType>
1520       <ReturnValue>
1521         <ReturnType>System.Void</ReturnType>
1522       </ReturnValue>
1523       <Parameters>
1524         <Parameter Name="e" Type="System.EventArgs" />
1525       </Parameters>
1526       <Docs>
1527         <remarks>To be added.</remarks>
1528         <summary>
1529           <attribution license="cc4" from="Microsoft" modified="false" />
1530           <para>Overrides the <see cref="M:System.Windows.Forms.Control.OnSystemColorsChanged(System.EventArgs)" /> method.</para>
1531         </summary>
1532         <param name="e">
1533           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
1534       </Docs>
1535       <AssemblyInfo>
1536         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1537         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1538       </AssemblyInfo>
1539     </Member>
1540     <Member MemberName="OnValueChanged">
1541       <MemberSignature Language="C#" Value="protected virtual void OnValueChanged (EventArgs eventargs);" />
1542       <MemberType>Method</MemberType>
1543       <ReturnValue>
1544         <ReturnType>System.Void</ReturnType>
1545       </ReturnValue>
1546       <Parameters>
1547         <Parameter Name="eventargs" Type="System.EventArgs" />
1548       </Parameters>
1549       <Docs>
1550         <remarks>
1551           <attribution license="cc4" from="Microsoft" modified="false" />
1552           <para>The <see cref="E:System.Windows.Forms.DateTimePicker.ValueChanged" /> event occurs when the value for the control changes.</para>
1553           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
1554           <para>The <see cref="M:System.Windows.Forms.DateTimePicker.OnValueChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
1555         </remarks>
1556         <summary>
1557           <attribution license="cc4" from="Microsoft" modified="false" />
1558           <para>Raises the <see cref="E:System.Windows.Forms.DateTimePicker.ValueChanged" /> event.</para>
1559         </summary>
1560         <param name="eventargs">
1561           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1562       </Docs>
1563       <AssemblyInfo>
1564         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1565         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1566       </AssemblyInfo>
1567     </Member>
1568     <Member MemberName="Padding">
1569       <MemberSignature Language="C#" Value="public System.Windows.Forms.Padding Padding { set; get; }" />
1570       <MemberType>Property</MemberType>
1571       <AssemblyInfo>
1572         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1573       </AssemblyInfo>
1574       <Attributes>
1575         <Attribute>
1576           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1577         </Attribute>
1578         <Attribute>
1579           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
1580         </Attribute>
1581         <Attribute>
1582           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1583         </Attribute>
1584       </Attributes>
1585       <ReturnValue>
1586         <ReturnType>System.Windows.Forms.Padding</ReturnType>
1587       </ReturnValue>
1588       <Docs>
1589         <value>To be added.</value>
1590         <remarks>
1591           <attribution license="cc4" from="Microsoft" modified="false" />
1592           <para>Setting the <see cref="P:System.Windows.Forms.DateTimePicker.Padding" /> property has no effect on the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</para>
1593         </remarks>
1594         <summary>
1595           <attribution license="cc4" from="Microsoft" modified="false" />
1596           <para>Gets or sets the spacing between the contents of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control and its edges.</para>
1597         </summary>
1598       </Docs>
1599     </Member>
1600     <Member MemberName="PaddingChanged">
1601       <MemberSignature Language="C#" Value="public event EventHandler PaddingChanged;" />
1602       <MemberType>Event</MemberType>
1603       <AssemblyInfo>
1604         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1605       </AssemblyInfo>
1606       <Attributes>
1607         <Attribute>
1608           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1609         </Attribute>
1610         <Attribute>
1611           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1612         </Attribute>
1613       </Attributes>
1614       <ReturnValue>
1615         <ReturnType>System.EventHandler</ReturnType>
1616       </ReturnValue>
1617       <Docs>
1618         <remarks>
1619           <attribution license="cc4" from="Microsoft" modified="false" />
1620           <para>The event is not relevant for this class.</para>
1621         </remarks>
1622         <summary>
1623           <attribution license="cc4" from="Microsoft" modified="false" />
1624           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DateTimePicker.Padding" /> property changes.</para>
1625         </summary>
1626       </Docs>
1627     </Member>
1628     <Member MemberName="Paint">
1629       <MemberSignature Language="C#" Value="public event System.Windows.Forms.PaintEventHandler Paint;" />
1630       <MemberType>Event</MemberType>
1631       <Attributes>
1632         <Attribute>
1633           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1634         </Attribute>
1635         <Attribute>
1636           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1637         </Attribute>
1638       </Attributes>
1639       <ReturnValue>
1640         <ReturnType>System.Windows.Forms.PaintEventHandler</ReturnType>
1641       </ReturnValue>
1642       <Docs>
1643         <remarks>To be added.</remarks>
1644         <summary>
1645           <attribution license="cc4" from="Microsoft" modified="false" />
1646           <para>Occurs when the control is redrawn.</para>
1647         </summary>
1648       </Docs>
1649       <AssemblyInfo>
1650         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1651         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1652       </AssemblyInfo>
1653     </Member>
1654     <Member MemberName="PreferredHeight">
1655       <MemberSignature Language="C#" Value="public int PreferredHeight { get; }" />
1656       <MemberType>Property</MemberType>
1657       <Attributes>
1658         <Attribute>
1659           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
1660         </Attribute>
1661         <Attribute>
1662           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1663         </Attribute>
1664       </Attributes>
1665       <ReturnValue>
1666         <ReturnType>System.Int32</ReturnType>
1667       </ReturnValue>
1668       <Docs>
1669         <value>To be added.</value>
1670         <remarks>
1671           <attribution license="cc4" from="Microsoft" modified="false" />
1672           <para>The preferred height is the minimum height needed to accommodate the displayed text with the assigned <see cref="T:System.Drawing.Font" /> applied.</para>
1673         </remarks>
1674         <summary>
1675           <attribution license="cc4" from="Microsoft" modified="false" />
1676           <para>Gets the preferred height of the <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</para>
1677         </summary>
1678       </Docs>
1679       <AssemblyInfo>
1680         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1681         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1682       </AssemblyInfo>
1683     </Member>
1684     <Member MemberName="RightToLeftLayout">
1685       <MemberSignature Language="C#" Value="public virtual bool RightToLeftLayout { set; get; }" />
1686       <MemberType>Property</MemberType>
1687       <AssemblyInfo>
1688         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1689       </AssemblyInfo>
1690       <Attributes>
1691         <Attribute>
1692           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
1693         </Attribute>
1694         <Attribute>
1695           <AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName>
1696         </Attribute>
1697       </Attributes>
1698       <ReturnValue>
1699         <ReturnType>System.Boolean</ReturnType>
1700       </ReturnValue>
1701       <Docs>
1702         <value>To be added.</value>
1703         <remarks>
1704           <attribution license="cc4" from="Microsoft" modified="false" />
1705           <para>The <see cref="P:System.Windows.Forms.DateTimePicker.RightToLeftLayout" /> property is used for international applications where the language is written from right to left, such as Hebrew or Arabic.</para>
1706         </remarks>
1707         <summary>
1708           <attribution license="cc4" from="Microsoft" modified="false" />
1709           <para>Gets or sets whether the contents of the <see cref="T:System.Windows.Forms.DateTimePicker" /> are laid out from right to left.</para>
1710         </summary>
1711       </Docs>
1712     </Member>
1713     <Member MemberName="RightToLeftLayoutChanged">
1714       <MemberSignature Language="C#" Value="public event EventHandler RightToLeftLayoutChanged;" />
1715       <MemberType>Event</MemberType>
1716       <AssemblyInfo>
1717         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1718       </AssemblyInfo>
1719       <ReturnValue>
1720         <ReturnType>System.EventHandler</ReturnType>
1721       </ReturnValue>
1722       <Docs>
1723         <remarks>
1724           <attribution license="cc4" from="Microsoft" modified="false" />
1725           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
1726         </remarks>
1727         <summary>
1728           <attribution license="cc4" from="Microsoft" modified="false" />
1729           <para>Occurs when the <see cref="P:System.Windows.Forms.DateTimePicker.RightToLeftLayout" /> property changes. </para>
1730         </summary>
1731       </Docs>
1732     </Member>
1733     <Member MemberName="SetBoundsCore">
1734       <MemberSignature Language="C#" Value="protected override void SetBoundsCore (int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified);" />
1735       <MemberType>Method</MemberType>
1736       <ReturnValue>
1737         <ReturnType>System.Void</ReturnType>
1738       </ReturnValue>
1739       <Parameters>
1740         <Parameter Name="x" Type="System.Int32" />
1741         <Parameter Name="y" Type="System.Int32" />
1742         <Parameter Name="width" Type="System.Int32" />
1743         <Parameter Name="height" Type="System.Int32" />
1744         <Parameter Name="specified" Type="System.Windows.Forms.BoundsSpecified" />
1745       </Parameters>
1746       <Docs>
1747         <param name="x">To be added.</param>
1748         <param name="y">To be added.</param>
1749         <param name="width">To be added.</param>
1750         <param name="height">To be added.</param>
1751         <param name="specified">To be added.</param>
1752         <summary>To be added.</summary>
1753         <remarks>To be added.</remarks>
1754       </Docs>
1755       <AssemblyInfo>
1756         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1757       </AssemblyInfo>
1758     </Member>
1759     <Member MemberName="ShowCheckBox">
1760       <MemberSignature Language="C#" Value="public bool ShowCheckBox { set; get; }" />
1761       <MemberType>Property</MemberType>
1762       <Attributes>
1763         <Attribute>
1764           <AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName>
1765         </Attribute>
1766       </Attributes>
1767       <ReturnValue>
1768         <ReturnType>System.Boolean</ReturnType>
1769       </ReturnValue>
1770       <Docs>
1771         <value>To be added.</value>
1772         <remarks>
1773           <attribution license="cc4" from="Microsoft" modified="false" />
1774           <para>When the <see cref="P:System.Windows.Forms.DateTimePicker.ShowCheckBox" /> property is set to true, a check box is displayed to the left of the date in the control. When the check box is selected, the date/time value can be updated. When the check box is cleared, the date/time value is unable to be changed.</para>
1775         </remarks>
1776         <summary>
1777           <attribution license="cc4" from="Microsoft" modified="false" />
1778           <para>Gets or sets a value indicating whether a check box is displayed to the left of the selected date.</para>
1779         </summary>
1780       </Docs>
1781       <AssemblyInfo>
1782         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1783         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1784       </AssemblyInfo>
1785     </Member>
1786     <Member MemberName="ShowUpDown">
1787       <MemberSignature Language="C#" Value="public bool ShowUpDown { set; get; }" />
1788       <MemberType>Property</MemberType>
1789       <Attributes>
1790         <Attribute>
1791           <AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName>
1792         </Attribute>
1793       </Attributes>
1794       <ReturnValue>
1795         <ReturnType>System.Boolean</ReturnType>
1796       </ReturnValue>
1797       <Docs>
1798         <value>To be added.</value>
1799         <remarks>
1800           <attribution license="cc4" from="Microsoft" modified="false" />
1801           <para>When the <see cref="P:System.Windows.Forms.DateTimePicker.ShowUpDown" /> property is set to true, a spin button control (also known as an up-down control), rather than a drop-down calendar, is used to adjust time values. The date and time can be adjusted by selecting each element individually and using the up and down buttons to change the value.</para>
1802           <para>To display only time in a <see cref="T:System.Windows.Forms.DateTimePicker" />, set the <see cref="P:System.Windows.Forms.DateTimePicker.Format" /> property to <see cref="F:System.Windows.Forms.DateTimePickerFormat.Time" />, and the <see cref="P:System.Windows.Forms.DateTimePicker.ShowUpDown" /> property to true.</para>
1803         </remarks>
1804         <summary>
1805           <attribution license="cc4" from="Microsoft" modified="false" />
1806           <para>Gets or sets a value indicating whether a spin button control (also known as an up-down control) is used to adjust the date/time value.</para>
1807         </summary>
1808       </Docs>
1809       <AssemblyInfo>
1810         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1811         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1812       </AssemblyInfo>
1813     </Member>
1814     <Member MemberName="Text">
1815       <MemberSignature Language="C#" Value="public override string Text { set; get; }" />
1816       <MemberType>Property</MemberType>
1817       <Attributes>
1818         <Attribute>
1819           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
1820         </Attribute>
1821         <Attribute>
1822           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1823         </Attribute>
1824         <Attribute>
1825           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1826         </Attribute>
1827       </Attributes>
1828       <ReturnValue>
1829         <ReturnType>System.String</ReturnType>
1830       </ReturnValue>
1831       <Docs>
1832         <value>To be added.</value>
1833         <remarks>
1834           <attribution license="cc4" from="Microsoft" modified="false" />
1835           <para>The string returned by this property is equivalent to the <see cref="P:System.Windows.Forms.DateTimePicker.Value" /> property with the appropriate formatting or custom formatting applied. For example, if the <see cref="P:System.Windows.Forms.DateTimePicker.Value" /> property is set to 06/01/2001 12:00:00 AM while the <see cref="P:System.Windows.Forms.DateTimePicker.CustomFormat" /> property is set to "dddd, MMMM dd, yyyy", the <see cref="P:System.Windows.Forms.DateTimePicker.Text" /> property value is "Friday, June 01, 2001".</para>
1836           <para>When setting this property, the string must be convertible to an instance of the <see cref="T:System.DateTime" /> class. It is possible to define a custom format that results in a string that cannot be converted to a valid <see cref="T:System.DateTime" /> value. Because of this, the string returned from the <see cref="P:System.Windows.Forms.DateTimePicker.Text" /> property might cause an error if it is passed back to the <see cref="P:System.Windows.Forms.DateTimePicker.Text" /> property. If the string cannot be converted to a date/time value, the <see cref="T:System.DateTime" /> class throws a <see cref="T:System.FormatException" />.</para>
1837         </remarks>
1838         <summary>
1839           <attribution license="cc4" from="Microsoft" modified="false" />
1840           <para>Gets or sets the text associated with this control.</para>
1841         </summary>
1842       </Docs>
1843       <AssemblyInfo>
1844         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1845         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1846       </AssemblyInfo>
1847     </Member>
1848     <Member MemberName="TextChanged">
1849       <MemberSignature Language="C#" Value="public event EventHandler TextChanged;" />
1850       <MemberType>Event</MemberType>
1851       <Attributes>
1852         <Attribute>
1853           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1854         </Attribute>
1855         <Attribute>
1856           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1857         </Attribute>
1858       </Attributes>
1859       <ReturnValue>
1860         <ReturnType>System.EventHandler</ReturnType>
1861       </ReturnValue>
1862       <Docs>
1863         <remarks>To be added.</remarks>
1864         <summary>
1865           <attribution license="cc4" from="Microsoft" modified="false" />
1866           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DateTimePicker.Text" /> property changes.</para>
1867         </summary>
1868       </Docs>
1869       <AssemblyInfo>
1870         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1871         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1872       </AssemblyInfo>
1873     </Member>
1874     <Member MemberName="ToString">
1875       <MemberSignature Language="C#" Value="public override string ToString ();" />
1876       <MemberType>Method</MemberType>
1877       <ReturnValue>
1878         <ReturnType>System.String</ReturnType>
1879       </ReturnValue>
1880       <Parameters />
1881       <Docs>
1882         <remarks>To be added.</remarks>
1883         <summary>
1884           <attribution license="cc4" from="Microsoft" modified="false" />
1885           <para>Returns a string that represents the current <see cref="T:System.Windows.Forms.DateTimePicker" /> control.</para>
1886         </summary>
1887         <returns>
1888           <attribution license="cc4" from="Microsoft" modified="false" />
1889           <para>A string that represents the current <see cref="T:System.Windows.Forms.DateTimePicker" />. The string includes the type and the <see cref="P:System.Windows.Forms.DateTimePicker.Value" /> property of the control.</para>
1890         </returns>
1891       </Docs>
1892       <AssemblyInfo>
1893         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1894         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1895       </AssemblyInfo>
1896     </Member>
1897     <Member MemberName="Value">
1898       <MemberSignature Language="C#" Value="public DateTime Value { set; get; }" />
1899       <MemberType>Property</MemberType>
1900       <Attributes>
1901         <Attribute>
1902           <AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)</AttributeName>
1903         </Attribute>
1904         <Attribute>
1905           <AttributeName>System.ComponentModel.Bindable(true)</AttributeName>
1906         </Attribute>
1907       </Attributes>
1908       <ReturnValue>
1909         <ReturnType>System.DateTime</ReturnType>
1910       </ReturnValue>
1911       <Docs>
1912         <value>To be added.</value>
1913         <remarks>
1914           <attribution license="cc4" from="Microsoft" modified="false" />
1915           <para>If the <see cref="P:System.Windows.Forms.DateTimePicker.Value" /> property has not been changed in code or by the user, it is set to the current date and time (<see cref="P:System.DateTime.Now" />).</para>
1916         </remarks>
1917         <summary>
1918           <attribution license="cc4" from="Microsoft" modified="false" />
1919           <para>Gets or sets the date/time value assigned to the control.</para>
1920         </summary>
1921       </Docs>
1922       <AssemblyInfo>
1923         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1924         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1925       </AssemblyInfo>
1926     </Member>
1927     <Member MemberName="ValueChanged">
1928       <MemberSignature Language="C#" Value="public event EventHandler ValueChanged;" />
1929       <MemberType>Event</MemberType>
1930       <ReturnValue>
1931         <ReturnType>System.EventHandler</ReturnType>
1932       </ReturnValue>
1933       <Docs>
1934         <remarks>
1935           <attribution license="cc4" from="Microsoft" modified="false" />
1936           <para>User input is validated before this event is raised. This event is not raised when the entered date is earlier than <see cref="F:System.Windows.Forms.DateTimePicker.MinDateTime" /> or later than <see cref="F:System.Windows.Forms.DateTimePicker.MaxDateTime" />.</para>
1937           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
1938         </remarks>
1939         <summary>
1940           <attribution license="cc4" from="Microsoft" modified="false" />
1941           <para>Occurs when the <see cref="P:System.Windows.Forms.DateTimePicker.Value" /> property changes.</para>
1942         </summary>
1943       </Docs>
1944       <AssemblyInfo>
1945         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1946         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1947       </AssemblyInfo>
1948     </Member>
1949     <Member MemberName="WndProc">
1950       <MemberSignature Language="C#" Value="protected override void WndProc (ref System.Windows.Forms.Message m);" />
1951       <MemberType>Method</MemberType>
1952       <ReturnValue>
1953         <ReturnType>System.Void</ReturnType>
1954       </ReturnValue>
1955       <Parameters>
1956         <Parameter Name="m" Type="System.Windows.Forms.Message&amp;" RefType="ref" />
1957       </Parameters>
1958       <Docs>
1959         <param name="m">To be added.</param>
1960         <summary>To be added.</summary>
1961         <remarks>To be added.</remarks>
1962       </Docs>
1963       <AssemblyInfo>
1964         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1965         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1966       </AssemblyInfo>
1967     </Member>
1968   </Members>
1969 </Type>