(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / WINELib / CreateParams.cs
blobb6bb0c463f9615c379dcd7991cdf15d5ef5bdbad
1 //
2 // System.Windows.Forms.CreateParams.cs
3 //
4 // Author:
5 // stubbed out by Jaak Simm (jaaksimm@firm.ee)
6 // Dennis Hayes (dennish@Raytek.com)
7 //
8 // (C) 2002 Ximian, Inc
9 //
11 using System.Collections;
12 using System.ComponentModel;
14 namespace System.Windows.Forms {
16 /// <summary>
17 /// Encapsulates the information needed when creating a control.
18 /// </summary>
20 public class CreateParams {
22 #region Fields
23 private string caption;
24 private string className;
25 private int classStyle;
26 private int exStyle;
27 private int height;
28 private object param;
29 private IntPtr parent;
30 private int style;
31 private int width;
32 private int x;
33 private int y;
34 #endregion
36 #region Constructors
37 public CreateParams()
40 #endregion
42 #region Properties
43 public string Caption {
44 get { return caption; }
45 set { caption = value; }
48 public string ClassName {
49 get { return className; }
50 set { className = value; }
53 public int ClassStyle {
54 get { return classStyle; }
55 set { classStyle = value; }
58 public int ExStyle {
59 get { return exStyle; }
60 set { exStyle = value; }
63 public int Height {
64 get { return height; }
65 set { height = value; }
68 public object Param {
69 get { return param; }
70 set { param = value; }
73 public IntPtr Parent {
74 get { return parent; }
75 set { parent = value; }
78 public int Style {
79 get { return style; }
80 set { style = value; }
83 public int Width {
84 get { return width; }
85 set { width = value; }
88 public int X {
89 get { return x; }
90 set { x = value; }
93 public int Y {
94 get { return y; }
95 set { y = value; }
97 #endregion
99 #region Methods
100 [MonoTODO]
101 public override string ToString()
103 throw new NotImplementedException ();
105 #endregion