?? opennetcf.windows.forms.xml
字號:
</remarks>
</member>
<member name="M:OpenNETCF.Windows.Forms.ButtonBase2.OnResize(System.EventArgs)">
<summary>
Raises the Resize event.
</summary>
<param name="e">An EventArgs that contains the event data.</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.ButtonBase2.RaisePaintEvent(System.Windows.Forms.PaintEventArgs)">
<summary>
Explicitly raises the Paint event with double buffer awareness.
</summary>
<param name="args">A <see cref="T:System.Windows.Forms.PaintEventArgs"/> that references the original paint argument passed to the OnPaint method.</param>
<remarks>
If the DoubleBuffered property is set to <b>true</b>, the double buffer <see cref="T:System.Drawing.Graphics"/> object will be passed through the event.
</remarks>
</member>
<member name="M:OpenNETCF.Windows.Forms.ButtonBase2.RegisterSequentialPainting">
<summary>
Registers the caller in the sequential painting process by generating a token that the caller can use to identify its sequencing order.
</summary>
<returns>A <see cref="T:System.Int32"/> that represents a sequential painting token.</returns>
<remarks>
The token generated by this method should be stored by the caller and passed back to this class when calling methods such as NotifyPaintingComplete or IsSequentialPaintingComplete.
</remarks>
</member>
<member name="M:OpenNETCF.Windows.Forms.ButtonBase2.ResetImage">
<summary>
Resets the Image property to its default value.
</summary>
</member>
<member name="M:OpenNETCF.Windows.Forms.ButtonBase2.ResetImageAlign">
<summary>
Resets the ImageAlign property to its default value.
</summary>
</member>
<member name="M:OpenNETCF.Windows.Forms.ButtonBase2.ResetTextAlign">
<summary>
Resets the TextAlign property to its default value.
</summary>
</member>
<member name="M:OpenNETCF.Windows.Forms.ButtonBase2.ShouldSerializeImage">
<summary>
Indicates whether the Image property should be persisted.
</summary>
<returns><b>true</b> if the property value has changed from its default; otherwise, <b>false</b>.</returns>
</member>
<member name="M:OpenNETCF.Windows.Forms.ButtonBase2.ShouldSerializeImageAlign">
<summary>
Indicates whether the ImageAlign property should be persisted.
</summary>
<returns><b>true</b> if the property value has changed from its default; otherwise, <b>false</b>.</returns>
</member>
<member name="M:OpenNETCF.Windows.Forms.ButtonBase2.ShouldSerializeTextAlign">
<summary>
Indicates whether the TextAlign property should be persisted.
</summary>
<returns><b>true</b> if the property value has changed from its default; otherwise, <b>false</b>.</returns>
</member>
<member name="M:OpenNETCF.Windows.Forms.ButtonBase2.UpdateDoubleBuffer">
<summary>
Creates, or recreates, the objects used to represent the double buffer for the presentation of the control.
</summary>
</member>
<member name="M:OpenNETCF.Windows.Forms.ButtonBase2.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
<summary>
Implements the basic functionality common to button controls.
</summary>
</member>
<member name="P:OpenNETCF.Windows.Forms.ButtonBase2.BackgroundImage">
<summary>
Gets or sets the background image displayed in the control.
</summary>
<value>A <see cref="T:System.Drawing.Image"/> that represents the image to display in the background of the control.</value>
</member>
<member name="P:OpenNETCF.Windows.Forms.ButtonBase2.Image">
<summary>
Gets or sets the image that is displayed on the control.
</summary>
<value>The <see cref="T:System.Drawing.Image"/> displayed on the control. The default value is a null reference (Nothing in Visual Basic).</value>
</member>
<member name="P:OpenNETCF.Windows.Forms.ButtonBase2.ImageAlign">
<summary>
Gets or sets the alignment of the image on the control.
</summary>
<value>One of the <see cref="T:OpenNETCF.Drawing.ContentAlignment2"/> values. The default value is MiddleCenter.</value>
</member>
<member name="P:OpenNETCF.Windows.Forms.ButtonBase2.ImageIndex">
<summary>
Gets or sets the image list index value of the image displayed on the control.
</summary>
<value>A zero-based index, which represents the image position in a <see cref="T:System.Windows.Forms.ImageList"/>. The default is -1.</value>
</member>
<member name="P:OpenNETCF.Windows.Forms.ButtonBase2.ImageList">
<summary>
Gets or sets the image list that contains the image displayed on the control.
</summary>
<value>A <see cref="T:System.Windows.Forms.ImageList"/>. The default value is a null reference (Nothing in Visual Basic).</value>
</member>
<member name="P:OpenNETCF.Windows.Forms.ButtonBase2.IsDisposed">
<summary>
Gets a value indicating whether the control has been disposed.
</summary>
<value><b>true</b> if the control has been disposed; otherwise, <b>false</b>.</value>
</member>
<member name="P:OpenNETCF.Windows.Forms.ButtonBase2.TextAlign">
<summary>
Gets or sets the alignment of the text on the control.
</summary>
<value>One of the <see cref="T:OpenNETCF.Drawing.ContentAlignment2"/> values. The default value is MiddleCenter.</value>
</member>
<member name="P:OpenNETCF.Windows.Forms.ButtonBase2.DoubleBuffer">
<summary>
Gets the object used to represent the double buffer for the presentation of the control.
</summary>
<value>A <see cref="T:System.Drawing.Graphics"/> object used to double buffer the presentation of the control.</value>
<remarks>
The DoubleBuffered property must be set to <b>true</b> for this property to return a valid object. If the DoubleBuffered property is set to <b>false</b>, the default, then this property will return a null reference (Nothing in Visual Basic).
</remarks>
</member>
<member name="P:OpenNETCF.Windows.Forms.ButtonBase2.DoubleBuffered">
<summary>
Gets or sets a value indicating whether the presentation of the control is double buffered.
</summary>
<value>A <see cref="T:System.Boolean"/> that is set to <b>true</b> if the presentation of the control is double buffered; otherwise, <b>false</b>. The default is <b>false</b>.</value>
<remarks>
See the example section of the OnPaint method for the recommended pattern to ensure that double buffering is accommodated.
</remarks>
</member>
<member name="P:OpenNETCF.Windows.Forms.ButtonBase2.IsDefault">
<summary>
Gets or sets a value indicating whether the button control is the default button.
</summary>
<value><b>true</b> if the button control is the default button; otherwise, <b>false</b>.</value>
</member>
<member name="T:OpenNETCF.Windows.Forms.IButtonControl">
<summary>
Allows a control to act like a button on a form.
</summary>
</member>
<member name="M:OpenNETCF.Windows.Forms.IButtonControl.NotifyDefault(System.Boolean)">
<summary>
Notifies a control that it is the default button so that its appearance and behavior are adjusted accordingly.
</summary>
<param name="value"><b>true</b> if the control should behave as a default button; otherwise, <b>false</b>.</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.IButtonControl.PerformClick">
<summary>
Generates a Click event for the control.
</summary>
</member>
<member name="P:OpenNETCF.Windows.Forms.IButtonControl.DialogResult">
<summary>
Gets or sets the value returned to the parent form when the button is clicked.
</summary>
<value>One of the <see cref="T:System.Windows.Forms.DialogResult"/> values.</value>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.#ctor">
<summary>
Initializes a new instance of the Button2 class.
</summary>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.GetLocationFromContentAlignment(OpenNETCF.Drawing.ContentAlignment2,System.Drawing.SizeF,System.Drawing.Rectangle)">
<summary>
Determines the location at which the content should be displayed, on the control, based on the indicated alignment value.
</summary>
<param name="alignment">The <see cref="T:OpenNETCF.Drawing.ContentAlignment2"/> that represents how the content should be positioned on the control.</param>
<param name="contentSize">The <see cref="T:System.Drawing.SizeF"/> containing the width and height of the content to display on the control.</param>
<param name="clipRect">The <see cref="T:System.Drawing.Rectangle"/> that represents the allotted area in which the content may be displayed.</param>
<returns>A <see cref="T:System.Drawing.Point"/> containing the x and y coordinates at which the content should be displayed.</returns>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.NotifyDefault(System.Boolean)">
<summary>
Notifies the button whether it is the default button so that it can adjust its appearance accordingly.
</summary>
<param name="value"><b>true</b> if the button is to have the appearance of the default button; otherwise, <b>false</b>.</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.OnClick(System.EventArgs)">
<summary>
Raises the Click event.
</summary>
<param name="e">An EventArgs that contains the event data.</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.OnDoubleClick(System.EventArgs)">
<summary>
Raises the DoubleClick event.
</summary>
<param name="e">An EventArgs that contains the event data.</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.OnEnabledChanged(System.EventArgs)">
<summary>
Raises the EnabledChanged event.
</summary>
<param name="e">An EventArgs that contains the event data.</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.OnGotFocus(System.EventArgs)">
<summary>
Raises the GotFocus event.
</summary>
<param name="e">An EventArgs that contains the event data.</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)">
<summary>
Raises the KeyPress event.
</summary>
<param name="e">A KeyPressEventArgs that contains the event data.</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.OnLostFocus(System.EventArgs)">
<summary>
Raises the LostFocus event.
</summary>
<param name="e">An EventArgs that contains the event data.</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the MouseDown event.
</summary>
<param name="e">A MouseEventArgs that contains the event data.</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
Raises the MouseMove event.
</summary>
<param name="e">A MouseEventArgs that contains the event data.</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
Raises the Paint event.
</summary>
<param name="e">A PaintEventArgs that contains the event data.</param>
<remarks>
<b>Notes to Inheritors:</b> See the example section, in the <see cref="T:OpenNETCF.Windows.Forms.ButtonBase2"/> control documentation, for the recommended pattern to ensure that double buffering and structured paint sequencing are both accommodated.
</remarks>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.OnTextChanged(System.EventArgs)">
<summary>
Raises the TextChanged event.
</summary>
<param name="e">An EventArgs that contains the event data.</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.PerformClick">
<summary>
Generates a Click event for a button.
</summary>
</member>
<member name="M:OpenNETCF.Windows.Forms.Button2.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
<summary>
Represents a button control.
</summary>
</member>
<member name="P:OpenNETCF.Windows.Forms.Button2.ActiveBackColor">
<summary>
Gets or sets the background color for the control in an active state.
</summary>
<value>A <see cref="T:System.Drawing.Color"/> that represents the active background color of the control. The default is SystemColors.ControlText.</value>
</member>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -