| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- //
- // System.Windows.Forms.CreateParams.cs
- //
- // Author:
- // stubbed out by Jaak Simm ([email protected])
- // Dennis Hayes ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- using System.Collections;
- using System.ComponentModel;
- namespace System.Windows.Forms {
- /// <summary>
- /// Encapsulates the information needed when creating a control.
- /// </summary>
-
- public class CreateParams {
- #region Fields
- private string caption;
- private string className;
- private int classStyle;
- private int exStyle;
- private int height;
- private object param;
- private IntPtr parent;
- private int style;
- private int width;
- private int x;
- private int y;
- #endregion
-
- #region Constructors
- public CreateParams()
- {
- }
- #endregion
-
- #region Properties
- public string Caption {
- get { return caption; }
- set { caption = value; }
- }
-
- public string ClassName {
- get { return className; }
- set { className = value; }
- }
-
- public int ClassStyle {
- get { return classStyle; }
- set { classStyle = value; }
- }
-
- public int ExStyle {
- get { return exStyle; }
- set { exStyle = value; }
- }
-
- public int Height {
- get { return height; }
- set { height = value; }
- }
-
- public object Param {
- get { return param; }
- set { param = value; }
- }
-
- public IntPtr Parent {
- get { return parent; }
- set { parent = value; }
- }
-
- public int Style {
- get { return style; }
- set { style = value; }
- }
-
- public int Width {
- get { return width; }
- set { width = value; }
- }
-
- public int X {
- get { return x; }
- set { x = value; }
- }
-
- public int Y {
- get { return y; }
- set { y = value; }
- }
- #endregion
-
- #region Methods
- [MonoTODO]
- public override string ToString()
- {
- throw new NotImplementedException ();
- }
- #endregion
-
- }
- }
|