Rename Managed.Windows.Forms to System.Windows.Forms for consistency.
[mono.git] / mcs / class / System.Windows.Forms / Documentation / en / System.Windows.Forms / ButtonRenderer.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <Type Name="ButtonRenderer" FullName="System.Windows.Forms.ButtonRenderer">
3   <TypeSignature Language="C#" Value="public sealed class ButtonRenderer" />
4   <AssemblyInfo>
5     <AssemblyName>System.Windows.Forms</AssemblyName>
6     <AssemblyVersion>2.0.0.0</AssemblyVersion>
7   </AssemblyInfo>
8   <Base>
9     <BaseTypeName>System.Object</BaseTypeName>
10   </Base>
11   <Interfaces />
12   <Docs>
13     <since version=".NET 2.0" />
14     <remarks>
15       <attribution license="cc4" from="Microsoft" modified="false" />
16       <para>The <see cref="T:System.Windows.Forms.ButtonRenderer" /> class provides a set of static methods that can be used to render a button control. Rendering a control refers to drawing the user interface of a control. To draw a button, use one of the <see cref="Overload:System.Windows.Forms.ButtonRenderer.DrawButton" /> methods. These methods provide a variety of options, such as drawing text or an image on the button.</para>
17       <para>If visual styles are enabled in the operating system and visual styles are applied to the current application, <see cref="Overload:System.Windows.Forms.ButtonRenderer.DrawButton" /> will draw the button with the current visual style. Otherwise, <see cref="Overload:System.Windows.Forms.ButtonRenderer.DrawButton" /> will draw the button with the classic Windows style. This is useful if you are drawing a custom control that should automatically match the current visual style setting of the operating system.</para>
18       <para>This class wraps the functionality of a <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleRenderer" /> that is set to one of the elements exposed by the <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton" /> class. For more information, see <format type="text/html"><a href="a5b178ba-610e-46c4-a6c0-509c0886a744">Rendering Controls with Visual Styles</a></format>.</para>
19     </remarks>
20     <summary>
21       <attribution license="cc4" from="Microsoft" modified="false" />
22       <para>Provides methods used to render a button control with or without visual styles. This class cannot be inherited.</para>
23     </summary>
24   </Docs>
25   <Members>
26     <Member MemberName="DrawButton">
27       <MemberSignature Language="C#" Value="public static void DrawButton (System.Drawing.Graphics g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.PushButtonState state);" />
28       <MemberType>Method</MemberType>
29       <ReturnValue>
30         <ReturnType>System.Void</ReturnType>
31       </ReturnValue>
32       <Parameters>
33         <Parameter Name="g" Type="System.Drawing.Graphics" />
34         <Parameter Name="bounds" Type="System.Drawing.Rectangle" />
35         <Parameter Name="state" Type="System.Windows.Forms.VisualStyles.PushButtonState" />
36       </Parameters>
37       <Docs>
38         <since version=".NET 2.0" />
39         <remarks>
40           <attribution license="cc4" from="Microsoft" modified="false" />
41           <para>If visual styles are enabled in the operating system and visual styles are applied to the current application, this method will draw the button with the current visual style. Otherwise, it will draw the button with the classic Windows style.</para>
42         </remarks>
43         <summary>
44           <attribution license="cc4" from="Microsoft" modified="false" />
45           <para>Draws a button control in the specified state and bounds.</para>
46         </summary>
47         <param name="g">
48           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Graphics" /> used to draw the button.</param>
49         <param name="bounds">
50           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the button.</param>
51         <param name="state">
52           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
53       </Docs>
54       <AssemblyInfo>
55         <AssemblyVersion>2.0.0.0</AssemblyVersion>
56       </AssemblyInfo>
57     </Member>
58     <Member MemberName="DrawButton">
59       <MemberSignature Language="C#" Value="public static void DrawButton (System.Drawing.Graphics g, System.Drawing.Rectangle bounds, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state);" />
60       <MemberType>Method</MemberType>
61       <ReturnValue>
62         <ReturnType>System.Void</ReturnType>
63       </ReturnValue>
64       <Parameters>
65         <Parameter Name="g" Type="System.Drawing.Graphics" />
66         <Parameter Name="bounds" Type="System.Drawing.Rectangle" />
67         <Parameter Name="focused" Type="System.Boolean" />
68         <Parameter Name="state" Type="System.Windows.Forms.VisualStyles.PushButtonState" />
69       </Parameters>
70       <Docs>
71         <since version=".NET 2.0" />
72         <remarks>
73           <attribution license="cc4" from="Microsoft" modified="false" />
74           <para>If visual styles are enabled in the operating system and visual styles are applied to the current application, this method will draw the button with the current visual style. Otherwise, it will draw the button with the classic Windows style.</para>
75         </remarks>
76         <summary>
77           <attribution license="cc4" from="Microsoft" modified="false" />
78           <para>Draws a button control in the specified state and bounds, and with an optional focus rectangle.</para>
79         </summary>
80         <param name="g">
81           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Graphics" /> used to draw the button.</param>
82         <param name="bounds">
83           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the button.</param>
84         <param name="focused">
85           <attribution license="cc4" from="Microsoft" modified="false" />true to draw a focus rectangle on the button; otherwise, false.</param>
86         <param name="state">
87           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
88       </Docs>
89       <AssemblyInfo>
90         <AssemblyVersion>2.0.0.0</AssemblyVersion>
91       </AssemblyInfo>
92     </Member>
93     <Member MemberName="DrawButton">
94       <MemberSignature Language="C#" Value="public static void DrawButton (System.Drawing.Graphics g, System.Drawing.Rectangle bounds, System.Drawing.Image image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state);" />
95       <MemberType>Method</MemberType>
96       <ReturnValue>
97         <ReturnType>System.Void</ReturnType>
98       </ReturnValue>
99       <Parameters>
100         <Parameter Name="g" Type="System.Drawing.Graphics" />
101         <Parameter Name="bounds" Type="System.Drawing.Rectangle" />
102         <Parameter Name="image" Type="System.Drawing.Image" />
103         <Parameter Name="imageBounds" Type="System.Drawing.Rectangle" />
104         <Parameter Name="focused" Type="System.Boolean" />
105         <Parameter Name="state" Type="System.Windows.Forms.VisualStyles.PushButtonState" />
106       </Parameters>
107       <Docs>
108         <since version=".NET 2.0" />
109         <remarks>
110           <attribution license="cc4" from="Microsoft" modified="false" />
111           <para>If visual styles are enabled in the operating system and visual styles are applied to the current application, this method will draw the button with the current visual style. Otherwise, it will draw the button with the classic Windows style.</para>
112         </remarks>
113         <summary>
114           <attribution license="cc4" from="Microsoft" modified="false" />
115           <para>Draws a button control in the specified state and bounds, with the specified image, and with an optional focus rectangle.</para>
116         </summary>
117         <param name="g">
118           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Graphics" /> used to draw the button.</param>
119         <param name="bounds">
120           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the button.</param>
121         <param name="image">
122           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Image" /> to draw on the button.</param>
123         <param name="imageBounds">
124           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of <paramref name="image" />.</param>
125         <param name="focused">
126           <attribution license="cc4" from="Microsoft" modified="false" />true to draw a focus rectangle on the button; otherwise, false.</param>
127         <param name="state">
128           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
129       </Docs>
130       <AssemblyInfo>
131         <AssemblyVersion>2.0.0.0</AssemblyVersion>
132       </AssemblyInfo>
133     </Member>
134     <Member MemberName="DrawButton">
135       <MemberSignature Language="C#" Value="public static void DrawButton (System.Drawing.Graphics g, System.Drawing.Rectangle bounds, string buttonText, System.Drawing.Font font, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state);" />
136       <MemberType>Method</MemberType>
137       <ReturnValue>
138         <ReturnType>System.Void</ReturnType>
139       </ReturnValue>
140       <Parameters>
141         <Parameter Name="g" Type="System.Drawing.Graphics" />
142         <Parameter Name="bounds" Type="System.Drawing.Rectangle" />
143         <Parameter Name="buttonText" Type="System.String" />
144         <Parameter Name="font" Type="System.Drawing.Font" />
145         <Parameter Name="focused" Type="System.Boolean" />
146         <Parameter Name="state" Type="System.Windows.Forms.VisualStyles.PushButtonState" />
147       </Parameters>
148       <Docs>
149         <since version=".NET 2.0" />
150         <remarks>
151           <attribution license="cc4" from="Microsoft" modified="false" />
152           <para>If visual styles are enabled in the operating system and visual styles are applied to the current application, this method will draw the button with the current visual style. Otherwise, it will draw the button with the classic Windows style.</para>
153         </remarks>
154         <summary>
155           <attribution license="cc4" from="Microsoft" modified="false" />
156           <para>Draws a button control in the specified state and bounds, with the specified text, and with an optional focus rectangle.</para>
157         </summary>
158         <param name="g">
159           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Graphics" /> used to draw the button.</param>
160         <param name="bounds">
161           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the button.</param>
162         <param name="buttonText">
163           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> to draw on the button.</param>
164         <param name="font">
165           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="buttonText" />.</param>
166         <param name="focused">
167           <attribution license="cc4" from="Microsoft" modified="false" />true to draw a focus rectangle on the button; otherwise, false.</param>
168         <param name="state">
169           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
170       </Docs>
171       <AssemblyInfo>
172         <AssemblyVersion>2.0.0.0</AssemblyVersion>
173       </AssemblyInfo>
174     </Member>
175     <Member MemberName="DrawButton">
176       <MemberSignature Language="C#" Value="public static void DrawButton (System.Drawing.Graphics g, System.Drawing.Rectangle bounds, string buttonText, System.Drawing.Font font, System.Windows.Forms.TextFormatFlags flags, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state);" />
177       <MemberType>Method</MemberType>
178       <ReturnValue>
179         <ReturnType>System.Void</ReturnType>
180       </ReturnValue>
181       <Parameters>
182         <Parameter Name="g" Type="System.Drawing.Graphics" />
183         <Parameter Name="bounds" Type="System.Drawing.Rectangle" />
184         <Parameter Name="buttonText" Type="System.String" />
185         <Parameter Name="font" Type="System.Drawing.Font" />
186         <Parameter Name="flags" Type="System.Windows.Forms.TextFormatFlags" />
187         <Parameter Name="focused" Type="System.Boolean" />
188         <Parameter Name="state" Type="System.Windows.Forms.VisualStyles.PushButtonState" />
189       </Parameters>
190       <Docs>
191         <since version=".NET 2.0" />
192         <remarks>
193           <attribution license="cc4" from="Microsoft" modified="false" />
194           <para>If visual styles are enabled in the operating system and visual styles are applied to the current application, this method will draw the button with the current visual style. Otherwise, it will draw the button with the classic Windows style.</para>
195         </remarks>
196         <summary>
197           <attribution license="cc4" from="Microsoft" modified="false" />
198           <para>Draws a button control in the specified state and bounds, with the specified text and text formatting, and with an optional focus rectangle.</para>
199         </summary>
200         <param name="g">
201           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Graphics" /> used to draw the button.</param>
202         <param name="bounds">
203           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the button.</param>
204         <param name="buttonText">
205           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> to draw on the button.</param>
206         <param name="font">
207           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="buttonText" />.</param>
208         <param name="flags">
209           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values to apply to <paramref name="buttonText" />.</param>
210         <param name="focused">
211           <attribution license="cc4" from="Microsoft" modified="false" />true to draw a focus rectangle on the button; otherwise, false.</param>
212         <param name="state">
213           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
214       </Docs>
215       <AssemblyInfo>
216         <AssemblyVersion>2.0.0.0</AssemblyVersion>
217       </AssemblyInfo>
218     </Member>
219     <Member MemberName="DrawButton">
220       <MemberSignature Language="C#" Value="public static void DrawButton (System.Drawing.Graphics g, System.Drawing.Rectangle bounds, string buttonText, System.Drawing.Font font, System.Drawing.Image image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state);" />
221       <MemberType>Method</MemberType>
222       <ReturnValue>
223         <ReturnType>System.Void</ReturnType>
224       </ReturnValue>
225       <Parameters>
226         <Parameter Name="g" Type="System.Drawing.Graphics" />
227         <Parameter Name="bounds" Type="System.Drawing.Rectangle" />
228         <Parameter Name="buttonText" Type="System.String" />
229         <Parameter Name="font" Type="System.Drawing.Font" />
230         <Parameter Name="image" Type="System.Drawing.Image" />
231         <Parameter Name="imageBounds" Type="System.Drawing.Rectangle" />
232         <Parameter Name="focused" Type="System.Boolean" />
233         <Parameter Name="state" Type="System.Windows.Forms.VisualStyles.PushButtonState" />
234       </Parameters>
235       <Docs>
236         <since version=".NET 2.0" />
237         <remarks>
238           <attribution license="cc4" from="Microsoft" modified="false" />
239           <para>If visual styles are enabled in the operating system and visual styles are applied to the current application, this method will draw the button with the current visual style. Otherwise, it will draw the button with the classic Windows style.</para>
240         </remarks>
241         <summary>
242           <attribution license="cc4" from="Microsoft" modified="false" />
243           <para>Draws a button control in the specified state and bounds, with the specified text and image, and with an optional focus rectangle.</para>
244         </summary>
245         <param name="g">
246           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Graphics" /> used to draw the button.</param>
247         <param name="bounds">
248           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the button.</param>
249         <param name="buttonText">
250           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> to draw on the button.</param>
251         <param name="font">
252           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="buttonText" />.</param>
253         <param name="image">
254           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Image" /> to draw on the button.</param>
255         <param name="imageBounds">
256           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of <paramref name="image" />.</param>
257         <param name="focused">
258           <attribution license="cc4" from="Microsoft" modified="false" />true to draw a focus rectangle on the button; otherwise, false.</param>
259         <param name="state">
260           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
261       </Docs>
262       <AssemblyInfo>
263         <AssemblyVersion>2.0.0.0</AssemblyVersion>
264       </AssemblyInfo>
265     </Member>
266     <Member MemberName="DrawButton">
267       <MemberSignature Language="C#" Value="public static void DrawButton (System.Drawing.Graphics g, System.Drawing.Rectangle bounds, string buttonText, System.Drawing.Font font, System.Windows.Forms.TextFormatFlags flags, System.Drawing.Image image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state);" />
268       <MemberType>Method</MemberType>
269       <ReturnValue>
270         <ReturnType>System.Void</ReturnType>
271       </ReturnValue>
272       <Parameters>
273         <Parameter Name="g" Type="System.Drawing.Graphics" />
274         <Parameter Name="bounds" Type="System.Drawing.Rectangle" />
275         <Parameter Name="buttonText" Type="System.String" />
276         <Parameter Name="font" Type="System.Drawing.Font" />
277         <Parameter Name="flags" Type="System.Windows.Forms.TextFormatFlags" />
278         <Parameter Name="image" Type="System.Drawing.Image" />
279         <Parameter Name="imageBounds" Type="System.Drawing.Rectangle" />
280         <Parameter Name="focused" Type="System.Boolean" />
281         <Parameter Name="state" Type="System.Windows.Forms.VisualStyles.PushButtonState" />
282       </Parameters>
283       <Docs>
284         <since version=".NET 2.0" />
285         <remarks>
286           <attribution license="cc4" from="Microsoft" modified="false" />
287           <para>If visual styles are enabled in the operating system and visual styles are applied to the current application, this method will draw the button with the current visual style. Otherwise, it will draw the button with the classic Windows style.</para>
288         </remarks>
289         <summary>
290           <attribution license="cc4" from="Microsoft" modified="false" />
291           <para>Draws a button control in the specified state and bounds; with the specified text, text formatting, and image; and with an optional focus rectangle.</para>
292         </summary>
293         <param name="g">
294           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Graphics" /> used to draw the button.</param>
295         <param name="bounds">
296           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Rectangle" /> that specifies the bounds of the button.</param>
297         <param name="buttonText">
298           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> to draw on the button.</param>
299         <param name="font">
300           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Font" /> to apply to <paramref name="buttonText" />.</param>
301         <param name="flags">
302           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of the <see cref="T:System.Windows.Forms.TextFormatFlags" /> values to apply to <paramref name="buttonText" />.</param>
303         <param name="image">
304           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Image" /> to draw on the button.</param>
305         <param name="imageBounds">
306           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Rectangle" /> that represents the dimensions of <paramref name="image" />.</param>
307         <param name="focused">
308           <attribution license="cc4" from="Microsoft" modified="false" />true to draw a focus rectangle on the button; otherwise, false.</param>
309         <param name="state">
310           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
311       </Docs>
312       <AssemblyInfo>
313         <AssemblyVersion>2.0.0.0</AssemblyVersion>
314       </AssemblyInfo>
315     </Member>
316     <Member MemberName="DrawParentBackground">
317       <MemberSignature Language="C#" Value="public static void DrawParentBackground (System.Drawing.Graphics g, System.Drawing.Rectangle bounds, System.Windows.Forms.Control childControl);" />
318       <MemberType>Method</MemberType>
319       <ReturnValue>
320         <ReturnType>System.Void</ReturnType>
321       </ReturnValue>
322       <Parameters>
323         <Parameter Name="g" Type="System.Drawing.Graphics" />
324         <Parameter Name="bounds" Type="System.Drawing.Rectangle" />
325         <Parameter Name="childControl" Type="System.Windows.Forms.Control" />
326       </Parameters>
327       <Docs>
328         <remarks>To be added.</remarks>
329         <since version=".NET 2.0" />
330         <summary>
331           <attribution license="cc4" from="Microsoft" modified="false" />
332           <para>Draws the background of a control's parent in the specified area.</para>
333         </summary>
334         <param name="g">
335           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Graphics" /> used to draw the background of the parent of <paramref name="childControl" />.</param>
336         <param name="bounds">
337           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Rectangle" /> in which to draw the parent control's background. This rectangle should be inside the child control’s bounds.</param>
338         <param name="childControl">
339           <attribution license="cc4" from="Microsoft" modified="false" />The control whose parent's background will be drawn.</param>
340       </Docs>
341       <AssemblyInfo>
342         <AssemblyVersion>2.0.0.0</AssemblyVersion>
343       </AssemblyInfo>
344     </Member>
345     <Member MemberName="IsBackgroundPartiallyTransparent">
346       <MemberSignature Language="C#" Value="public static bool IsBackgroundPartiallyTransparent (System.Windows.Forms.VisualStyles.PushButtonState state);" />
347       <MemberType>Method</MemberType>
348       <ReturnValue>
349         <ReturnType>System.Boolean</ReturnType>
350       </ReturnValue>
351       <Parameters>
352         <Parameter Name="state" Type="System.Windows.Forms.VisualStyles.PushButtonState" />
353       </Parameters>
354       <Docs>
355         <remarks>To be added.</remarks>
356         <since version=".NET 2.0" />
357         <summary>
358           <attribution license="cc4" from="Microsoft" modified="false" />
359           <para>Indicates whether the background of the button has semitransparent or alpha-blended pieces.</para>
360         </summary>
361         <returns>
362           <attribution license="cc4" from="Microsoft" modified="false" />
363           <para>true if the background of the button has semitransparent or alpha-blended pieces; otherwise, false.</para>
364         </returns>
365         <param name="state">
366           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.VisualStyles.PushButtonState" /> values that specifies the visual state of the button.</param>
367       </Docs>
368       <AssemblyInfo>
369         <AssemblyVersion>2.0.0.0</AssemblyVersion>
370       </AssemblyInfo>
371     </Member>
372     <Member MemberName="RenderMatchingApplicationState">
373       <MemberSignature Language="C#" Value="public static bool RenderMatchingApplicationState { set; get; }" />
374       <MemberType>Property</MemberType>
375       <ReturnValue>
376         <ReturnType>System.Boolean</ReturnType>
377       </ReturnValue>
378       <Docs>
379         <value>To be added.</value>
380         <since version=".NET 2.0" />
381         <remarks>
382           <attribution license="cc4" from="Microsoft" modified="false" />
383           <para>If the <see cref="P:System.Windows.Forms.ButtonRenderer.RenderMatchingApplicationState" /> property is true, the <see cref="T:System.Windows.Forms.ButtonRenderer" /> uses the setting from the <see cref="P:System.Windows.Forms.Application.RenderWithVisualStyles" /> property to determine the rendering style. If <see cref="P:System.Windows.Forms.ButtonRenderer.RenderMatchingApplicationState" /> is false, the renderer will always render using visual styles.</para>
384         </remarks>
385         <summary>
386           <attribution license="cc4" from="Microsoft" modified="false" />
387           <para>Gets or sets a value indicating whether the renderer uses the application state to determine rendering style.</para>
388         </summary>
389       </Docs>
390       <AssemblyInfo>
391         <AssemblyVersion>2.0.0.0</AssemblyVersion>
392       </AssemblyInfo>
393     </Member>
394   </Members>
395 </Type>