Rename Managed.Windows.Forms to System.Windows.Forms for consistency.
[mono.git] / mcs / class / System.Windows.Forms / Documentation / en / System.Windows.Forms / RadioButton.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <Type Name="RadioButton" FullName="System.Windows.Forms.RadioButton">
3   <TypeSignature Language="C#" Value="public class RadioButton : System.Windows.Forms.ButtonBase" />
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.ButtonBase</BaseTypeName>
11   </Base>
12   <Interfaces />
13   <Attributes>
14     <Attribute>
15       <AttributeName>System.ComponentModel.Designer("System.Windows.Forms.Design.RadioButtonDesigner, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
16     </Attribute>
17     <Attribute>
18       <AttributeName>System.ComponentModel.ToolboxItem("System.Windows.Forms.Design.AutoSizeToolboxItem,System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
19     </Attribute>
20     <Attribute>
21       <AttributeName>System.ComponentModel.DefaultBindingProperty("Checked")</AttributeName>
22     </Attribute>
23     <Attribute>
24       <AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName>
25     </Attribute>
26     <Attribute>
27       <AttributeName>System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)</AttributeName>
28     </Attribute>
29     <Attribute>
30       <AttributeName>System.ComponentModel.DefaultEvent("CheckedChanged")</AttributeName>
31     </Attribute>
32     <Attribute>
33       <AttributeName>System.ComponentModel.DefaultProperty("Checked")</AttributeName>
34     </Attribute>
35   </Attributes>
36   <Docs>
37     <remarks>
38       <attribution license="cc4" from="Microsoft" modified="false" />
39       <para>The <see cref="T:System.Windows.Forms.RadioButton" /> control can display text, an <see cref="T:System.Drawing.Image" />, or both.</para>
40       <para>When the user selects one option button (also known as a radio button) within a group, the others clear automatically. All <see cref="T:System.Windows.Forms.RadioButton" /> controls in a given container, such as a <see cref="T:System.Windows.Forms.Form" />, constitute a group. To create multiple groups on one form, place each group in its own container, such as a <see cref="T:System.Windows.Forms.GroupBox" /> or <see cref="T:System.Windows.Forms.Panel" /> control.</para>
41       <para>
42         <see cref="T:System.Windows.Forms.RadioButton" /> and <see cref="T:System.Windows.Forms.CheckBox" /> controls have a similar function: they offer choices a user can select or clear. The difference is that multiple <see cref="T:System.Windows.Forms.CheckBox" /> controls can be selected at the same time, but option buttons are mutually exclusive.</para>
43       <para>Use the <see cref="P:System.Windows.Forms.RadioButton.Checked" /> property to get or set the state of a <see cref="T:System.Windows.Forms.RadioButton" />. The option button's appearance can be altered to appear as a toggle-style button or as a standard option button by setting the <see cref="P:System.Windows.Forms.RadioButton.Appearance" /> property.</para>
44     </remarks>
45     <summary>
46       <attribution license="cc4" from="Microsoft" modified="false" />
47       <para>Enables the user to select a single option from a group of choices when paired with other <see cref="T:System.Windows.Forms.RadioButton" /> controls.</para>
48     </summary>
49   </Docs>
50   <Members>
51     <Member MemberName=".ctor">
52       <MemberSignature Language="C#" Value="public RadioButton ();" />
53       <MemberType>Constructor</MemberType>
54       <Parameters />
55       <Docs>
56         <remarks>
57           <attribution license="cc4" from="Microsoft" modified="false" />
58           <para>The default view of the <see cref="T:System.Windows.Forms.RadioButton" /> has its text aligned to the right of the button and the <see cref="P:System.Windows.Forms.RadioButton.AutoCheck" /> property is set to true.</para>
59         </remarks>
60         <summary>
61           <attribution license="cc4" from="Microsoft" modified="false" />
62           <para>Initializes a new instance of the <see cref="T:System.Windows.Forms.RadioButton" /> class.</para>
63         </summary>
64       </Docs>
65       <AssemblyInfo>
66         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
67         <AssemblyVersion>2.0.0.0</AssemblyVersion>
68       </AssemblyInfo>
69     </Member>
70     <Member MemberName="Appearance">
71       <MemberSignature Language="C#" Value="public System.Windows.Forms.Appearance Appearance { set; get; }" />
72       <MemberType>Property</MemberType>
73       <Attributes>
74         <Attribute>
75           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
76         </Attribute>
77         <Attribute>
78           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.Appearance.Normal)</AttributeName>
79         </Attribute>
80       </Attributes>
81       <ReturnValue>
82         <ReturnType>System.Windows.Forms.Appearance</ReturnType>
83       </ReturnValue>
84       <Docs>
85         <value>To be added.</value>
86         <remarks>
87           <attribution license="cc4" from="Microsoft" modified="false" />
88           <para>If the <see cref="P:System.Windows.Forms.RadioButton.Appearance" /> value is set to <see cref="F:System.Windows.Forms.Appearance.Normal" />, then the <see cref="T:System.Windows.Forms.RadioButton" /> control is drawn with a circular check box. If the value is set to <see cref="F:System.Windows.Forms.Appearance.Button" />, then the <see cref="T:System.Windows.Forms.RadioButton" /> is drawn as a control that can be toggled to an up or down state. Either type can display text, an image, or both.</para>
89         </remarks>
90         <summary>
91           <attribution license="cc4" from="Microsoft" modified="false" />
92           <para>Gets or sets a value determining the appearance of the <see cref="T:System.Windows.Forms.RadioButton" />.</para>
93         </summary>
94       </Docs>
95       <AssemblyInfo>
96         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
97         <AssemblyVersion>2.0.0.0</AssemblyVersion>
98       </AssemblyInfo>
99     </Member>
100     <Member MemberName="AppearanceChanged">
101       <MemberSignature Language="C#" Value="public event EventHandler AppearanceChanged;" />
102       <MemberType>Event</MemberType>
103       <ReturnValue>
104         <ReturnType>System.EventHandler</ReturnType>
105       </ReturnValue>
106       <Docs>
107         <remarks>
108           <attribution license="cc4" from="Microsoft" modified="false" />
109           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
110         </remarks>
111         <summary>
112           <attribution license="cc4" from="Microsoft" modified="false" />
113           <para>Occurs when the <see cref="P:System.Windows.Forms.RadioButton.Appearance" /> property value changes.</para>
114         </summary>
115       </Docs>
116       <AssemblyInfo>
117         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
118         <AssemblyVersion>2.0.0.0</AssemblyVersion>
119       </AssemblyInfo>
120     </Member>
121     <Member MemberName="AutoCheck">
122       <MemberSignature Language="C#" Value="public bool AutoCheck { set; get; }" />
123       <MemberType>Property</MemberType>
124       <Attributes>
125         <Attribute>
126           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
127         </Attribute>
128       </Attributes>
129       <ReturnValue>
130         <ReturnType>System.Boolean</ReturnType>
131       </ReturnValue>
132       <Docs>
133         <value>To be added.</value>
134         <remarks>
135           <attribution license="cc4" from="Microsoft" modified="false" />
136           <para>If the <see cref="P:System.Windows.Forms.RadioButton.Checked" /> value is set to false, the <see cref="T:System.Windows.Forms.RadioButton" /> portion of the control must be checked in code in the <see cref="E:System.Windows.Forms.Control.Click" /> event handler. In addition, if the <see cref="T:System.Windows.Forms.RadioButton" /> is part of a <see cref="T:System.Windows.Forms.RadioButton" /> control group, this property ensures that only one of the controls is checked at a given time.</para>
137           <para>If the <see cref="P:System.Windows.Forms.RadioButton.AutoCheck" /> property is set to false, a group of <see cref="T:System.Windows.Forms.RadioButton" /> controls will not act as a mutually exclusive group and the <see cref="P:System.Windows.Forms.RadioButton.Checked" /> property must be updated in code.</para>
138         </remarks>
139         <summary>
140           <attribution license="cc4" from="Microsoft" modified="false" />
141           <para>Gets or sets a value indicating whether the <see cref="P:System.Windows.Forms.RadioButton.Checked" /> value and the appearance of the control automatically change when the control is clicked.</para>
142         </summary>
143       </Docs>
144       <AssemblyInfo>
145         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
146         <AssemblyVersion>2.0.0.0</AssemblyVersion>
147       </AssemblyInfo>
148     </Member>
149     <Member MemberName="CheckAlign">
150       <MemberSignature Language="C#" Value="public System.Drawing.ContentAlignment CheckAlign { set; get; }" />
151       <MemberType>Property</MemberType>
152       <Attributes>
153         <Attribute>
154           <AttributeName>System.ComponentModel.DefaultValue(System.Drawing.ContentAlignment.MiddleLeft)</AttributeName>
155         </Attribute>
156         <Attribute>
157           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
158         </Attribute>
159       </Attributes>
160       <ReturnValue>
161         <ReturnType>System.Drawing.ContentAlignment</ReturnType>
162       </ReturnValue>
163       <Docs>
164         <value>To be added.</value>
165         <remarks>To be added.</remarks>
166         <summary>
167           <attribution license="cc4" from="Microsoft" modified="false" />
168           <para>Gets or sets the location of the check box portion of the <see cref="T:System.Windows.Forms.RadioButton" />.</para>
169         </summary>
170       </Docs>
171       <AssemblyInfo>
172         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
173         <AssemblyVersion>2.0.0.0</AssemblyVersion>
174       </AssemblyInfo>
175     </Member>
176     <Member MemberName="Checked">
177       <MemberSignature Language="C#" Value="public bool Checked { set; get; }" />
178       <MemberType>Property</MemberType>
179       <Attributes>
180         <Attribute>
181           <AttributeName>System.ComponentModel.Bindable(true, System.ComponentModel.BindingDirection.OneWay)</AttributeName>
182         </Attribute>
183         <Attribute>
184           <AttributeName>System.ComponentModel.SettingsBindable(true)</AttributeName>
185         </Attribute>
186         <Attribute>
187           <AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName>
188         </Attribute>
189       </Attributes>
190       <ReturnValue>
191         <ReturnType>System.Boolean</ReturnType>
192       </ReturnValue>
193       <Docs>
194         <value>To be added.</value>
195         <remarks>To be added.</remarks>
196         <summary>
197           <attribution license="cc4" from="Microsoft" modified="false" />
198           <para>Gets or sets a value indicating whether the control is checked.</para>
199         </summary>
200       </Docs>
201       <AssemblyInfo>
202         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
203         <AssemblyVersion>2.0.0.0</AssemblyVersion>
204       </AssemblyInfo>
205     </Member>
206     <Member MemberName="CheckedChanged">
207       <MemberSignature Language="C#" Value="public event EventHandler CheckedChanged;" />
208       <MemberType>Event</MemberType>
209       <ReturnValue>
210         <ReturnType>System.EventHandler</ReturnType>
211       </ReturnValue>
212       <Docs>
213         <remarks>
214           <attribution license="cc4" from="Microsoft" modified="false" />
215           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
216         </remarks>
217         <summary>
218           <attribution license="cc4" from="Microsoft" modified="false" />
219           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.RadioButton.Checked" /> property changes.</para>
220         </summary>
221       </Docs>
222       <AssemblyInfo>
223         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
224         <AssemblyVersion>2.0.0.0</AssemblyVersion>
225       </AssemblyInfo>
226     </Member>
227     <Member MemberName="CreateAccessibilityInstance">
228       <MemberSignature Language="C#" Value="protected override System.Windows.Forms.AccessibleObject CreateAccessibilityInstance ();" />
229       <MemberType>Method</MemberType>
230       <ReturnValue>
231         <ReturnType>System.Windows.Forms.AccessibleObject</ReturnType>
232       </ReturnValue>
233       <Parameters />
234       <Docs>
235         <remarks>
236           <attribution license="cc4" from="Microsoft" modified="false" />
237           <para>If you do not explicitly call the <see cref="M:System.Windows.Forms.RadioButton.CreateAccessibilityInstance" /> method, it will be called when the <see cref="P:System.Windows.Forms.Control.AccessibilityObject" /> property is referenced.</para>
238           <block subset="none" type="note">
239             <para>To get or set the <see cref="P:System.Windows.Forms.Control.AccessibilityObject" /> property, you must add a reference to the <see cref="N:Accessibility" /> assembly installed with the .NET Framework. </para>
240           </block>
241         </remarks>
242         <summary>
243           <attribution license="cc4" from="Microsoft" modified="false" />
244           <para>Creates a new accessibility object for the <see cref="T:System.Windows.Forms.RadioButton" /> control.</para>
245         </summary>
246         <returns>
247           <attribution license="cc4" from="Microsoft" modified="false" />
248           <para>A new <see cref="T:System.Windows.Forms.RadioButton.RadioButtonAccessibleObject" /> for the control.</para>
249         </returns>
250       </Docs>
251       <AssemblyInfo>
252         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
253         <AssemblyVersion>2.0.0.0</AssemblyVersion>
254       </AssemblyInfo>
255     </Member>
256     <Member MemberName="CreateParams">
257       <MemberSignature Language="C#" Value="protected override System.Windows.Forms.CreateParams CreateParams { get; }" />
258       <MemberType>Property</MemberType>
259       <ReturnValue>
260         <ReturnType>System.Windows.Forms.CreateParams</ReturnType>
261       </ReturnValue>
262       <Docs>
263         <value>To be added.</value>
264         <remarks>To be added.</remarks>
265         <summary>
266           <attribution license="cc4" from="Microsoft" modified="false" />
267           <para>Gets the required creation parameters when the control handle is created.</para>
268         </summary>
269       </Docs>
270       <AssemblyInfo>
271         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
272         <AssemblyVersion>2.0.0.0</AssemblyVersion>
273       </AssemblyInfo>
274     </Member>
275     <Member MemberName="DefaultSize">
276       <MemberSignature Language="C#" Value="protected override System.Drawing.Size DefaultSize { get; }" />
277       <MemberType>Property</MemberType>
278       <ReturnValue>
279         <ReturnType>System.Drawing.Size</ReturnType>
280       </ReturnValue>
281       <Docs>
282         <value>To be added.</value>
283         <remarks>To be added.</remarks>
284         <summary>
285           <attribution license="cc4" from="Microsoft" modified="false" />
286           <para>Gets the default size of the control.</para>
287         </summary>
288       </Docs>
289       <AssemblyInfo>
290         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
291         <AssemblyVersion>2.0.0.0</AssemblyVersion>
292       </AssemblyInfo>
293     </Member>
294     <Member MemberName="DoubleClick">
295       <MemberSignature Language="C#" Value="public event EventHandler DoubleClick;" />
296       <MemberType>Event</MemberType>
297       <Attributes>
298         <Attribute>
299           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
300         </Attribute>
301         <Attribute>
302           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
303         </Attribute>
304       </Attributes>
305       <ReturnValue>
306         <ReturnType>System.EventHandler</ReturnType>
307       </ReturnValue>
308       <Docs>
309         <remarks>
310           <attribution license="cc4" from="Microsoft" modified="false" />
311           <para>By default, the <see cref="F:System.Windows.Forms.ControlStyles.StandardClick" /> style bit is set to false for the <see cref="T:System.Windows.Forms.RadioButton" /> control, and the <see cref="E:System.Windows.Forms.RadioButton.DoubleClick" /> event is not raised.  </para>
312         </remarks>
313         <summary>
314           <attribution license="cc4" from="Microsoft" modified="false" />
315           <para>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.RadioButton" /> control.</para>
316         </summary>
317       </Docs>
318       <AssemblyInfo>
319         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
320         <AssemblyVersion>2.0.0.0</AssemblyVersion>
321       </AssemblyInfo>
322     </Member>
323     <Member MemberName="MouseDoubleClick">
324       <MemberSignature Language="C#" Value="public event System.Windows.Forms.MouseEventHandler MouseDoubleClick;" />
325       <MemberType>Event</MemberType>
326       <AssemblyInfo>
327         <AssemblyVersion>2.0.0.0</AssemblyVersion>
328       </AssemblyInfo>
329       <Attributes>
330         <Attribute>
331           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
332         </Attribute>
333         <Attribute>
334           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
335         </Attribute>
336       </Attributes>
337       <ReturnValue>
338         <ReturnType>System.Windows.Forms.MouseEventHandler</ReturnType>
339       </ReturnValue>
340       <Docs>
341         <remarks>
342           <attribution license="cc4" from="Microsoft" modified="false" />
343           <para>By default, the <see cref="F:System.Windows.Forms.ControlStyles.StandardClick" /> style bit is set to false for the <see cref="T:System.Windows.Forms.RadioButton" /> control, and the <see cref="E:System.Windows.Forms.RadioButton.MouseDoubleClick" /> event is not raised.</para>
344         </remarks>
345         <summary>
346           <attribution license="cc4" from="Microsoft" modified="false" />
347           <para>Occurs when the user double-clicks the <see cref="T:System.Windows.Forms.RadioButton" /> control with the mouse.</para>
348         </summary>
349       </Docs>
350     </Member>
351     <Member MemberName="OnCheckedChanged">
352       <MemberSignature Language="C#" Value="protected virtual void OnCheckedChanged (EventArgs e);" />
353       <MemberType>Method</MemberType>
354       <ReturnValue>
355         <ReturnType>System.Void</ReturnType>
356       </ReturnValue>
357       <Parameters>
358         <Parameter Name="e" Type="System.EventArgs" />
359       </Parameters>
360       <Docs>
361         <remarks>
362           <attribution license="cc4" from="Microsoft" modified="false" />
363           <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>
364           <para>The <see cref="M:System.Windows.Forms.RadioButton.OnCheckedChanged(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>
365         </remarks>
366         <summary>
367           <attribution license="cc4" from="Microsoft" modified="false" />
368           <para>Raises the <see cref="E:System.Windows.Forms.CheckBox.CheckedChanged" /> event.</para>
369         </summary>
370         <param name="e">
371           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
372       </Docs>
373       <AssemblyInfo>
374         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
375         <AssemblyVersion>2.0.0.0</AssemblyVersion>
376       </AssemblyInfo>
377     </Member>
378     <Member MemberName="OnClick">
379       <MemberSignature Language="C#" Value="protected override void OnClick (EventArgs e);" />
380       <MemberType>Method</MemberType>
381       <ReturnValue>
382         <ReturnType>System.Void</ReturnType>
383       </ReturnValue>
384       <Parameters>
385         <Parameter Name="e" Type="System.EventArgs" />
386       </Parameters>
387       <Docs>
388         <remarks>
389           <attribution license="cc4" from="Microsoft" modified="false" />
390           <para>If the <see cref="P:System.Windows.Forms.RadioButton.AutoCheck" /> property is set to true, the <see cref="P:System.Windows.Forms.RadioButton.Checked" /> property is set to true when the <see cref="T:System.Windows.Forms.RadioButton" /> control is clicked.</para>
391         </remarks>
392         <summary>
393           <attribution license="cc4" from="Microsoft" modified="false" />
394           <para>Raises the <see cref="E:System.Windows.Forms.Control.Click" /> event.</para>
395         </summary>
396         <param name="e">
397           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
398       </Docs>
399       <AssemblyInfo>
400         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
401         <AssemblyVersion>2.0.0.0</AssemblyVersion>
402       </AssemblyInfo>
403     </Member>
404     <Member MemberName="OnEnter">
405       <MemberSignature Language="C#" Value="protected override void OnEnter (EventArgs e);" />
406       <MemberType>Method</MemberType>
407       <ReturnValue>
408         <ReturnType>System.Void</ReturnType>
409       </ReturnValue>
410       <Parameters>
411         <Parameter Name="e" Type="System.EventArgs" />
412       </Parameters>
413       <Docs>
414         <remarks>
415           <attribution license="cc4" from="Microsoft" modified="false" />
416           <para>If the user enters the <see cref="T:System.Windows.Forms.RadioButton" /> control by using the arrow keys, the <see cref="T:System.Windows.Forms.RadioButton" /> will raise the <see cref="E:System.Windows.Forms.Control.Click" /> event.</para>
417         </remarks>
418         <summary>
419           <attribution license="cc4" from="Microsoft" modified="false" />
420           <para>Raises the <see cref="E:System.Windows.Forms.Control.Enter" /> event.</para>
421         </summary>
422         <param name="e">
423           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
424       </Docs>
425       <AssemblyInfo>
426         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
427         <AssemblyVersion>2.0.0.0</AssemblyVersion>
428       </AssemblyInfo>
429     </Member>
430     <Member MemberName="OnHandleCreated">
431       <MemberSignature Language="C#" Value="protected override void OnHandleCreated (EventArgs e);" />
432       <MemberType>Method</MemberType>
433       <ReturnValue>
434         <ReturnType>System.Void</ReturnType>
435       </ReturnValue>
436       <Parameters>
437         <Parameter Name="e" Type="System.EventArgs" />
438       </Parameters>
439       <Docs>
440         <remarks>To be added.</remarks>
441         <summary>
442           <attribution license="cc4" from="Microsoft" modified="false" />
443           <para>Overrides the <see cref="M:System.Windows.Forms.Control.OnHandleCreated(System.EventArgs)" /> method.</para>
444         </summary>
445         <param name="e">
446           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
447       </Docs>
448       <AssemblyInfo>
449         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
450         <AssemblyVersion>2.0.0.0</AssemblyVersion>
451       </AssemblyInfo>
452     </Member>
453     <Member MemberName="OnMouseUp">
454       <MemberSignature Language="C#" Value="protected override void OnMouseUp (System.Windows.Forms.MouseEventArgs mevent);" />
455       <MemberType>Method</MemberType>
456       <ReturnValue>
457         <ReturnType>System.Void</ReturnType>
458       </ReturnValue>
459       <Parameters>
460         <Parameter Name="mevent" Type="System.Windows.Forms.MouseEventArgs" />
461       </Parameters>
462       <Docs>
463         <remarks>
464           <attribution license="cc4" from="Microsoft" modified="false" />
465           <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>
466           <para>The <see cref="M:System.Windows.Forms.RadioButton.OnMouseUp(System.Windows.Forms.MouseEventArgs)" /> 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>
467         </remarks>
468         <summary>
469           <attribution license="cc4" from="Microsoft" modified="false" />
470           <para>Raises the <see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</para>
471         </summary>
472         <param name="mevent">
473           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data. </param>
474       </Docs>
475       <AssemblyInfo>
476         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
477         <AssemblyVersion>2.0.0.0</AssemblyVersion>
478       </AssemblyInfo>
479     </Member>
480     <Member MemberName="PerformClick">
481       <MemberSignature Language="C#" Value="public void PerformClick ();" />
482       <MemberType>Method</MemberType>
483       <ReturnValue>
484         <ReturnType>System.Void</ReturnType>
485       </ReturnValue>
486       <Parameters />
487       <Docs>
488         <remarks>To be added.</remarks>
489         <summary>
490           <attribution license="cc4" from="Microsoft" modified="false" />
491           <para>Generates a <see cref="E:System.Windows.Forms.Control.Click" /> event for the control, simulating a click by a user.</para>
492         </summary>
493       </Docs>
494       <AssemblyInfo>
495         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
496         <AssemblyVersion>2.0.0.0</AssemblyVersion>
497       </AssemblyInfo>
498     </Member>
499     <Member MemberName="ProcessMnemonic">
500       <MemberSignature Language="C#" Value="protected override bool ProcessMnemonic (char charCode);" />
501       <MemberType>Method</MemberType>
502       <ReturnValue>
503         <ReturnType>System.Boolean</ReturnType>
504       </ReturnValue>
505       <Parameters>
506         <Parameter Name="charCode" Type="System.Char" />
507       </Parameters>
508       <Docs>
509         <remarks>To be added.</remarks>
510         <summary>
511           <attribution license="cc4" from="Microsoft" modified="false" />
512           <para>Overrides the <see cref="M:System.Windows.Forms.Control.ProcessMnemonic(System.Char)" /> method.</para>
513         </summary>
514         <returns>
515           <attribution license="cc4" from="Microsoft" modified="false" />
516           <para>true if the character was successfully processed; otherwise, false.</para>
517         </returns>
518         <param name="charCode">
519           <attribution license="cc4" from="Microsoft" modified="false" />The character to process.</param>
520       </Docs>
521       <AssemblyInfo>
522         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
523         <AssemblyVersion>2.0.0.0</AssemblyVersion>
524       </AssemblyInfo>
525     </Member>
526     <Member MemberName="TabStop">
527       <MemberSignature Language="C#" Value="public bool TabStop { set; get; }" />
528       <MemberType>Property</MemberType>
529       <Attributes>
530         <Attribute>
531           <AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName>
532         </Attribute>
533       </Attributes>
534       <ReturnValue>
535         <ReturnType>System.Boolean</ReturnType>
536       </ReturnValue>
537       <Docs>
538         <value>To be added.</value>
539         <remarks>To be added.</remarks>
540         <summary>
541           <attribution license="cc4" from="Microsoft" modified="false" />
542           <para>Gets or sets a value indicating whether the user can give the focus to this control using the TAB key.</para>
543         </summary>
544       </Docs>
545       <AssemblyInfo>
546         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
547         <AssemblyVersion>2.0.0.0</AssemblyVersion>
548       </AssemblyInfo>
549     </Member>
550     <Member MemberName="TextAlign">
551       <MemberSignature Language="C#" Value="public override System.Drawing.ContentAlignment TextAlign { set; get; }" />
552       <MemberType>Property</MemberType>
553       <Attributes>
554         <Attribute>
555           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
556         </Attribute>
557         <Attribute>
558           <AttributeName>System.ComponentModel.DefaultValue(System.Drawing.ContentAlignment.MiddleLeft)</AttributeName>
559         </Attribute>
560       </Attributes>
561       <ReturnValue>
562         <ReturnType>System.Drawing.ContentAlignment</ReturnType>
563       </ReturnValue>
564       <Docs>
565         <value>To be added.</value>
566         <remarks>To be added.</remarks>
567         <summary>
568           <attribution license="cc4" from="Microsoft" modified="false" />
569           <para>Gets or sets the alignment of the text on the <see cref="T:System.Windows.Forms.RadioButton" /> control.</para>
570         </summary>
571       </Docs>
572       <AssemblyInfo>
573         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
574         <AssemblyVersion>2.0.0.0</AssemblyVersion>
575       </AssemblyInfo>
576     </Member>
577     <Member MemberName="ToString">
578       <MemberSignature Language="C#" Value="public override string ToString ();" />
579       <MemberType>Method</MemberType>
580       <ReturnValue>
581         <ReturnType>System.String</ReturnType>
582       </ReturnValue>
583       <Parameters />
584       <Docs>
585         <remarks>To be added.</remarks>
586         <summary>
587           <attribution license="cc4" from="Microsoft" modified="false" />
588           <para>Overrides the <see cref="M:System.ComponentModel.Component.ToString" /> method.</para>
589         </summary>
590         <returns>
591           <attribution license="cc4" from="Microsoft" modified="false" />
592           <para>A string representation of the <see cref="T:System.Windows.Forms.RadioButton" /> that indicates whether it is checked.</para>
593         </returns>
594       </Docs>
595       <AssemblyInfo>
596         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
597         <AssemblyVersion>2.0.0.0</AssemblyVersion>
598       </AssemblyInfo>
599     </Member>
600   </Members>
601 </Type>