CPF/CPF.Windows/CreateParams.cs
2023-11-21 23:05:03 +08:00

167 lines
5.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace CPF.Windows
{
public class CreateParams
{
string className;
string caption;
int style;
int exStyle;
int classStyle;
int x;
int y;
int width;
int height;
IntPtr parent;
object param;
/// <include file='doc\CreateParams.uex' path='docs/doc[@for="CreateParams.ClassName"]/*' />
/// <devdoc>
/// Name of the window class to subclass. The default value for this field
/// is null, indicating that the window is not a subclass of an existing
/// window class. To subclass an existing window class, store the window
/// class name in this field. For example, to subclass the standard edit
/// control, set this field to "EDIT".
/// </devdoc>
public string ClassName
{
get { return className; }
set { className = value; }
}
/// <include file='doc\CreateParams.uex' path='docs/doc[@for="CreateParams.Caption"]/*' />
/// <devdoc>
/// The initial caption your control will have.
/// </devdoc>
public string Caption
{
get { return caption; }
set { caption = value; }
}
/// <include file='doc\CreateParams.uex' path='docs/doc[@for="CreateParams.Style"]/*' />
/// <devdoc>
/// Window style bits. This must be a combination of WS_XXX style flags and
/// other control-specific style flags.
/// </devdoc>
public int Style
{
get { return style; }
set { style = value; }
}
/// <include file='doc\CreateParams.uex' path='docs/doc[@for="CreateParams.ExStyle"]/*' />
/// <devdoc>
/// Extended window style bits. This must be a combination of WS_EX_XXX
/// style flags.
/// </devdoc>
public int ExStyle
{
get { return exStyle; }
set { exStyle = value; }
}
/// <include file='doc\CreateParams.uex' path='docs/doc[@for="CreateParams.ClassStyle"]/*' />
/// <devdoc>
/// Class style bits. This must be a combination of CS_XXX style flags. This
/// field is ignored if the className field is not null.
/// </devdoc>
public int ClassStyle
{
get { return classStyle; }
set { classStyle = value; }
}
/// <include file='doc\CreateParams.uex' path='docs/doc[@for="CreateParams.X"]/*' />
/// <devdoc>
/// The left portion of the initial proposed location.
/// </devdoc>
public int X
{
get { return x; }
set { x = value; }
}
/// <include file='doc\CreateParams.uex' path='docs/doc[@for="CreateParams.Y"]/*' />
/// <devdoc>
/// The top portion of the initial proposed location.
/// </devdoc>
public int Y
{
get { return y; }
set { y = value; }
}
/// <include file='doc\CreateParams.uex' path='docs/doc[@for="CreateParams.Width"]/*' />
/// <devdoc>
/// The initially proposed width.
/// </devdoc>
public int Width
{
get { return width; }
set { width = value; }
}
/// <include file='doc\CreateParams.uex' path='docs/doc[@for="CreateParams.Height"]/*' />
/// <devdoc>
/// The initially proposed height.
/// </devdoc>
public int Height
{
get { return height; }
set { height = value; }
}
/// <include file='doc\CreateParams.uex' path='docs/doc[@for="CreateParams.Parent"]/*' />
/// <devdoc>
/// The controls parent.
/// </devdoc>
public IntPtr Parent
{
get { return parent; }
set { parent = value; }
}
/// <include file='doc\CreateParams.uex' path='docs/doc[@for="CreateParams.Param"]/*' />
/// <devdoc>
/// Any extra information that the underlying handle might want.
/// </devdoc>
public object Param
{
get { return param; }
set { param = value; }
}
/// <include file='doc\CreateParams.uex' path='docs/doc[@for="CreateParams.ToString"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override string ToString()
{
StringBuilder sb = new StringBuilder(64);
sb.Append("CreateParams {'");
sb.Append(className);
sb.Append("', '");
sb.Append(caption);
sb.Append("', 0x");
sb.Append(Convert.ToString(style, 16));
sb.Append(", 0x");
sb.Append(Convert.ToString(exStyle, 16));
sb.Append(", {");
sb.Append(x);
sb.Append(", ");
sb.Append(y);
sb.Append(", ");
sb.Append(width);
sb.Append(", ");
sb.Append(height);
sb.Append("}");
sb.Append("}");
return sb.ToString();
}
}
}