?? opennetcf.windows.forms.xml
字號(hào):
<param name="runAsSingletonApp">When <b>true</b>, if an existing instance of the app is already running, the current application instance will simply exit</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.Application2.Run(System.Windows.Forms.Form,System.Boolean)">
<summary>
Begins running a standard application message loop on the current thread, and makes the specified form visible.
</summary>
<param name="mainForm">Form on which main message loop runs</param>
<param name="runAsSingletonApp">When <b>true</b>, if an existing instance of the app is already running, the current application instance will simply exit and the already running app will come to the fore</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.Application2.Run">
<summary>
Begins running a standard application message loop on the current thread, without a form
</summary>
</member>
<member name="M:OpenNETCF.Windows.Forms.Application2.Run(System.Windows.Forms.Form)">
<summary>
Begins running a standard application message loop on the current thread, and makes the specified form visible.
<seealso cref="T:System.Windows.Forms.Form"/>
</summary>
<param name="mainForm">Form on which main message loop runs</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.Application2.Exit">
<summary>
Informs all message pumps that they must terminate, and then closes all application windows after the messages have been processed.
</summary>
</member>
<member name="M:OpenNETCF.Windows.Forms.Application2.DoEvents">
<summary>
Processes all Windows messages currently in the message queue.
</summary>
</member>
<member name="M:OpenNETCF.Windows.Forms.Application2.AddMessageFilter(OpenNETCF.Windows.Forms.IMessageFilter)">
<summary>
Adds a message filter to monitor Windows messages as they are routed to their destinations
<seealso cref="T:OpenNETCF.Windows.Forms.IMessageFilter"/>
</summary>
<param name="value">The implementation of the IMessageFilter interface you want to install</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.Application2.RemoveMessageFilter(OpenNETCF.Windows.Forms.IMessageFilter)">
<summary>
Removes a message filter from the message pump of the application
<seealso cref="T:OpenNETCF.Windows.Forms.IMessageFilter"/>
</summary>
<param name="value">The implementation of the IMessageFilter to remove from the application.</param>
</member>
<member name="E:OpenNETCF.Windows.Forms.Application2.ThreadExit">
<summary>
Occurs when Application2.Run exits
<seealso cref="M:OpenNETCF.Windows.Forms.Application2.Exit"/>
</summary>
</member>
<member name="E:OpenNETCF.Windows.Forms.Application2.ApplicationExit">
<summary>
Occurs when the application is about to shut down.
</summary>
</member>
<member name="P:OpenNETCF.Windows.Forms.Application2.MessageLoop">
<summary>
Gets a value indicating whether a message loop exists on this thread.
</summary>
</member>
<member name="P:OpenNETCF.Windows.Forms.Application2.StartupPath">
<summary>
Gets the path for the currently executing assembly file, not including the executable name.
</summary>
<value>The path for the executable file that started the application.</value>
</member>
<member name="P:OpenNETCF.Windows.Forms.Application2.ExecutablePath">
<summary>
Gets the path for the executable file that started the application, including the executable name.
</summary>
<value>The path and executable name for the executable file that started the application.</value>
</member>
<member name="T:OpenNETCF.Windows.Forms.BatteryChargeStatus">
<summary>
Defines identifiers that indicate the current battery charge level or charging state information.
</summary>
</member>
<member name="F:OpenNETCF.Windows.Forms.BatteryChargeStatus.High">
<summary>
Indicates a high level of battery charge.
</summary>
</member>
<member name="F:OpenNETCF.Windows.Forms.BatteryChargeStatus.Low">
<summary>
Indicates a low level of battery charge.
</summary>
</member>
<member name="F:OpenNETCF.Windows.Forms.BatteryChargeStatus.Critical">
<summary>
Indicates a critically low level of battery charge.
</summary>
</member>
<member name="F:OpenNETCF.Windows.Forms.BatteryChargeStatus.Charging">
<summary>
Indicates a battery is charging.
</summary>
</member>
<member name="F:OpenNETCF.Windows.Forms.BatteryChargeStatus.NoSystemBattery">
<summary>
Indicates that no battery is present.
</summary>
</member>
<member name="F:OpenNETCF.Windows.Forms.BatteryChargeStatus.Unknown">
<summary>
Indicates an unknown battery condition.
</summary>
</member>
<member name="T:OpenNETCF.Windows.Forms.BatteryChemistry">
<summary>
Identifies the chemistry of the devices main battery.
</summary>
<remarks>This enumeration is used by the <see cref="P:OpenNETCF.Windows.Forms.PowerStatus.BatteryChemistry"/> property.</remarks>
</member>
<member name="F:OpenNETCF.Windows.Forms.BatteryChemistry.Alkaline">
<summary>
Alkaline battery.
</summary>
</member>
<member name="F:OpenNETCF.Windows.Forms.BatteryChemistry.NiCad">
<summary>
Nickel Cadmium battery.
</summary>
</member>
<member name="F:OpenNETCF.Windows.Forms.BatteryChemistry.NiMH">
<summary>
Nickel Metal Hydride battery.
</summary>
</member>
<member name="F:OpenNETCF.Windows.Forms.BatteryChemistry.Lion">
<summary>
Lithium Ion battery.
</summary>
</member>
<member name="F:OpenNETCF.Windows.Forms.BatteryChemistry.LiPoly">
<summary>
Lithium Polymer battery.
</summary>
</member>
<member name="F:OpenNETCF.Windows.Forms.BatteryChemistry.ZincAir">
<summary>
Zinc Air battery.
</summary>
</member>
<member name="F:OpenNETCF.Windows.Forms.BatteryChemistry.Unknown">
<summary>
Battery chemistry is unknown.
</summary>
</member>
<member name="T:OpenNETCF.Windows.Forms.BatteryLife">
<summary>
Represents a control that indicates the percentage of remaining battery life.
</summary>
<remarks>This control will not work as expected on the emulator since, in the current release, battery life is not emulated.</remarks>
<example>
<code>
[C#]
public class Form1 : System.Windows.Forms.Form
{
private OpenNETCF.Windows.Forms.BatteryLife batteryLife1;
private System.Windows.Forms.Button button1;
public Form1()
{
batteryLife1 = new OpenNETCF.Windows.Forms.BatteryLife();
button1 = new System.Windows.Forms.Button();
button1.Click += new System.EventHandler(button1_Click);
}
private void button1_Click(object sender, EventArgs e)
{
// Call the UpdateBatteryLife method when the percentage bar should be refreshed with the latest battery life status.
batteryLife1.UpdateBatteryLife();
}
}
</code>
</example>
</member>
<member name="M:OpenNETCF.Windows.Forms.BatteryLife.#ctor">
<summary>
Initializes a new instance of the BatteryLife class.
</summary>
</member>
<member name="M:OpenNETCF.Windows.Forms.BatteryLife.Finalize">
<summary>
Allows an instance of the BatteryLife class to attempt to free resources and perform other cleanup operations.
</summary>
</member>
<member name="M:OpenNETCF.Windows.Forms.BatteryLife.Dispose">
<summary>
Releases all resources used by the BatteryLife instance.
</summary>
</member>
<member name="M:OpenNETCF.Windows.Forms.BatteryLife.Dispose(System.Boolean)">
<summary>
Releases the unmanaged resources used by the BatteryLife instance and optionally releases the managed resources.
</summary>
<param name="disposing"><b>true</b> to release both managed and unmanaged resources; <b>false</b> to release only unmanaged resources.</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.BatteryLife.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
Raises the Paint event.
</summary>
<param name="e">A PaintEventArgs that contains the event data.</param>
</member>
<member name="M:OpenNETCF.Windows.Forms.BatteryLife.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
<summary>
Paints the background of the control.
</summary>
<param name="e">A PaintEventArgs that contains information about the control to paint.</param>
<remarks>
<b>Notes to Inheritors:</b> With the the hope of preventing noticeable flicker, this method has be overridden to do nothing. Therefore, all painting should be done in the OnPaint method.
</remarks>
</member>
<member name="M:OpenNETCF.Windows.Forms.BatteryLife.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.BatteryLife.UpdateBatteryLife">
<summary>
Updates the display that represents the percentage of remaining battery life.
</summary>
<remarks>In addition to updating the display this method also refreshes the value of the PowerStatus property.</remarks>
</member>
<member name="M:OpenNETCF.Windows.Forms.BatteryLife.OpenNETCF#Windows#Forms#IWin32Window#get_Handle">
<summary>
Represents a control that indicates the percentage of remaining battery life.
</summary>
<remarks>This control will not work as expected on the emulator since, in the current release, battery life is not emulated.</remarks>
<example>
<code>
[C#]
public class Form1 : System.Windows.Forms.Form
{
private OpenNETCF.Windows.Forms.BatteryLife batteryLife1;
private System.Windows.Forms.Button button1;
public Form1()
{
batteryLife1 = new OpenNETCF.Windows.Forms.BatteryLife();
button1 = new System.Windows.Forms.Button();
button1.Click += new System.EventHandler(button1_Click);
}
private void button1_Click(object sender, EventArgs e)
{
// Call the UpdateBatteryLife method when the percentage bar should be refreshed with the latest battery life status.
batteryLife1.UpdateBatteryLife();
}
}
</code>
</example>
</member>
<member name="P:OpenNETCF.Windows.Forms.BatteryLife.BorderColor">
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -