Click here to Skip to main content
15,896,527 members
Articles / Containers / Docker

Form Docker

Rate me:
Please Sign up or sign in to vote.
2.33/5 (4 votes)
23 Sep 2008CPOL2 min read 41.6K   824   21  
Form Docker is a class library (DLL) that can dock any form to different parts of the screen.
<?xml version="1.0"?>
<doc>
<assembly>
<name>
FormDocker
</name>
</assembly>
<members>
<member name="M:FormDocker.FormDocker.#ctor(System.Windows.Forms.Form@,FormDocker.FormDocker.FormDockMode,System.Windows.Forms.Padding,System.Boolean,System.Boolean)">
	<summary>
 Constructor for FormDocker.
 </summary>
	<param name="Form">The form to dock.</param>
	<param name="DockMode">Where to dock the form.</param>
	<param name="Padding">The spacing between the form and the edge of the screen.</param>
	<param name="AutoRefreshOnChange">Whether to refresh when a property is changed.</param>
	<param name="RestoreOriginalLocation">Whether to restore the form to its previous location when undocked.</param>
	<remarks></remarks>
</member><member name="E:FormDocker.FormDocker.Refreshed">
	<summary>
 Occurs after the form's docking has been refreshed.
 </summary>
	<param name="sender"></param>
	<param name="e"></param>
	<remarks></remarks>
</member><member name="E:FormDocker.FormDocker.DockModeChanged">
	<summary>
 Occurs when the dock mode is changed.
 </summary>
	<param name="sender"></param>
	<param name="e"></param>
	<remarks></remarks>
</member><member name="E:FormDocker.FormDocker.DockChanged">
	<summary>
 Occurs when the form is docked or undocked.
 </summary>
	<param name="sender"></param>
	<param name="e"></param>
	<remarks></remarks>
</member><member name="T:FormDocker.FormDocker.FormDockMode">
	<summary>
 Contains the different docking modes.
 </summary>
	<remarks></remarks>
</member><member name="P:FormDocker.FormDocker.DockMode">
	<summary>
 Where to dock the form.
 </summary>
	<value></value>
	<returns></returns>
	<remarks></remarks>
</member><member name="P:FormDocker.FormDocker.Dock">
	<summary>
 Whether the form is docked or not. Set to 'True' to dock the form.
 </summary>
	<value></value>
	<returns></returns>
	<remarks></remarks>
</member><member name="P:FormDocker.FormDocker.Form">
	<summary>
 The form to dock.
 </summary>
	<value></value>
	<returns></returns>
	<remarks></remarks>
</member><member name="P:FormDocker.FormDocker.Padding">
	<summary>
 The spacing between the form and the edge of the screen.
 </summary>
	<value></value>
	<returns></returns>
	<remarks></remarks>
</member><member name="P:FormDocker.FormDocker.AutoRefreshOnChange">
	<summary>
 Whether to refresh when a property is changed.
 </summary>
	<value></value>
	<returns></returns>
	<remarks></remarks>
</member><member name="P:FormDocker.FormDocker.OriginalLocation">
	<summary>
 The original location to restore to.
 </summary>
	<value></value>
	<returns></returns>
	<remarks></remarks>
</member><member name="P:FormDocker.FormDocker.RestoreOriginalLocation">
	<summary>
 Whether to restore the form to its previous location when undocked.
 </summary>
	<value></value>
	<returns></returns>
	<remarks></remarks>
</member><member name="M:FormDocker.FormDocker.Refresh">
	<summary>
 Refreshes the docking. (Re-positions the form)
 </summary>
	<remarks></remarks>
</member><member name="M:FormDocker.FormDocker.DockForm">
	<summary>
 Docks the form.
 </summary>
	<remarks>Equivalent to Dock = True</remarks>
</member><member name="M:FormDocker.FormDocker.UndockForm">
	<summary>
 Undocks the form.
 </summary>
	<remarks>Equivalent to Dock = False</remarks>
</member>
</members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Canada Canada
I am a hobby VB programmer.

Comments and Discussions