Control Konstruktory
Definicja
Przeciążenia
Control() |
Inicjuje nowe wystąpienie Control klasy z ustawieniami domyślnymi.Initializes a new instance of the Control class with default settings. |
Control(String) |
Inicjuje nowe wystąpienie Control klasy z określonym tekstem.Initializes a new instance of the Control class with specific text. |
Control(Control, String) |
Inicjuje nowe wystąpienie Control klasy jako kontrolkę podrzędną z określonym tekstem.Initializes a new instance of the Control class as a child control, with specific text. |
Control(String, Int32, Int32, Int32, Int32) |
Inicjuje nowe wystąpienie Control klasy z określonym tekstem, rozmiarem i lokalizacją.Initializes a new instance of the Control class with specific text, size, and location. |
Control(Control, String, Int32, Int32, Int32, Int32) |
Inicjuje nowe wystąpienie Control klasy jako kontrolkę podrzędną z określonym tekstem, rozmiarem i lokalizacją.Initializes a new instance of the Control class as a child control, with specific text, size, and location. |
Control()
public:
Control();
public Control ();
Public Sub New ()
Uwagi
ControlKlasa jest klasą bazową dla wszystkich kontrolek używanych w aplikacji Windows Forms.The Control class is the base class for all controls used in a Windows Forms application. Ponieważ ta klasa nie jest zazwyczaj używana do tworzenia wystąpienia klasy, ten Konstruktor zazwyczaj nie jest wywoływany bezpośrednio, ale jest wywoływany przez klasę pochodną.Because this class is not typically used to create an instance of the class, this constructor is typically not called directly but is instead called by a derived class.
Dotyczy
Control(String)
public:
Control(System::String ^ text);
public Control (string text);
new System.Windows.Forms.Control : string -> System.Windows.Forms.Control
Public Sub New (text As String)
Parametry
- text
- String
Tekst wyświetlany przez kontrolkę.The text displayed by the control.
Uwagi
ControlKlasa jest klasą bazową dla wszystkich kontrolek używanych w aplikacji Windows Forms.The Control class is the base class for all controls used in a Windows Forms application. Ponieważ ta klasa nie jest zazwyczaj używana do tworzenia wystąpienia klasy, ten Konstruktor zazwyczaj nie jest wywoływany bezpośrednio, ale jest wywoływany przez klasę pochodną.Because this class is not typically used to create an instance of the class, this constructor is typically not called directly but is instead called by a derived class.
Ta wersja Control konstruktora ustawia początkową Text wartość właściwości na text
wartość parametru.This version of the Control constructor sets the initial Text property value to the text
parameter value.
Dotyczy
Control(Control, String)
public:
Control(System::Windows::Forms::Control ^ parent, System::String ^ text);
public Control (System.Windows.Forms.Control parent, string text);
new System.Windows.Forms.Control : System.Windows.Forms.Control * string -> System.Windows.Forms.Control
Public Sub New (parent As Control, text As String)
Parametry
- parent
- Control
ControlElement jest elementem nadrzędnym formantu.The Control to be the parent of the control.
- text
- String
Tekst wyświetlany przez kontrolkę.The text displayed by the control.
Uwagi
ControlKlasa jest klasą bazową dla wszystkich kontrolek używanych w aplikacji Windows Forms.The Control class is the base class for all controls used in a Windows Forms application. Ponieważ ta klasa nie jest zazwyczaj używana do tworzenia wystąpienia klasy, ten Konstruktor zazwyczaj nie jest wywoływany bezpośrednio, ale jest wywoływany przez klasę pochodną.Because this class is not typically used to create an instance of the class, this constructor is typically not called directly but is instead called by a derived class.
Ta wersja Control konstruktora ustawia początkową Text wartość właściwości na text
wartość parametru.This version of the Control constructor sets the initial Text property value to the text
parameter value. Konstruktor dodaje również formant do kontrolki nadrzędnej Control.ControlCollection .The constructor also adds the control to the parent control's Control.ControlCollection.
Dotyczy
Control(String, Int32, Int32, Int32, Int32)
public:
Control(System::String ^ text, int left, int top, int width, int height);
public Control (string text, int left, int top, int width, int height);
new System.Windows.Forms.Control : string * int * int * int * int -> System.Windows.Forms.Control
Public Sub New (text As String, left As Integer, top As Integer, width As Integer, height As Integer)
Parametry
- text
- String
Tekst wyświetlany przez kontrolkę.The text displayed by the control.
- left
- Int32
XPozycja formantu (w pikselach) od lewej krawędzi kontenera formantu.The X position of the control, in pixels, from the left edge of the control's container. Wartość jest przypisana do Left właściwości.The value is assigned to the Left property.
- top
- Int32
YPozycja formantu (w pikselach) od górnej krawędzi kontenera formantu.The Y position of the control, in pixels, from the top edge of the control's container. Wartość jest przypisana do Top właściwości.The value is assigned to the Top property.
- width
- Int32
Szerokość formantu (w pikselach).The width of the control, in pixels. Wartość jest przypisana do Width właściwości.The value is assigned to the Width property.
- height
- Int32
Wysokość formantu (w pikselach).The height of the control, in pixels. Wartość jest przypisana do Height właściwości.The value is assigned to the Height property.
Uwagi
ControlKlasa jest klasą bazową dla wszystkich kontrolek używanych w aplikacji Windows Forms.The Control class is the base class for all controls used in a Windows Forms application. Ponieważ ta klasa nie jest zazwyczaj używana do tworzenia wystąpienia klasy, ten Konstruktor zazwyczaj nie jest wywoływany bezpośrednio, ale jest wywoływany przez klasę pochodną.Because this class is not typically used to create an instance of the class, this constructor is typically not called directly but is instead called by a derived class.
Ta wersja Control konstruktora ustawia początkową Text wartość właściwości na text
wartość parametru.This version of the Control constructor sets the initial Text property value to the text
parameter value. Początkowa Size i Location kontrolka są określane przez left
top
width
height
wartości parametrów, i.The initial Size and Location of the control are determined by the left
, top
, width
and height
parameter values.
Uwaga
Aby zachować lepszą wydajność, nie ustawiaj rozmiaru formantu w jego konstruktorze.To maintain better performance, do not set the size of a control in its constructor. Preferowaną metodą jest zastąpienie DefaultSize właściwości.The preferred method is to override the DefaultSize property.
Dotyczy
Control(Control, String, Int32, Int32, Int32, Int32)
public:
Control(System::Windows::Forms::Control ^ parent, System::String ^ text, int left, int top, int width, int height);
public Control (System.Windows.Forms.Control parent, string text, int left, int top, int width, int height);
new System.Windows.Forms.Control : System.Windows.Forms.Control * string * int * int * int * int -> System.Windows.Forms.Control
Public Sub New (parent As Control, text As String, left As Integer, top As Integer, width As Integer, height As Integer)
Parametry
- parent
- Control
ControlElement jest elementem nadrzędnym formantu.The Control to be the parent of the control.
- text
- String
Tekst wyświetlany przez kontrolkę.The text displayed by the control.
- left
- Int32
XPozycja formantu (w pikselach) od lewej krawędzi kontenera formantu.The X position of the control, in pixels, from the left edge of the control's container. Wartość jest przypisana do Left właściwości.The value is assigned to the Left property.
- top
- Int32
YPozycja formantu (w pikselach) od górnej krawędzi kontenera formantu.The Y position of the control, in pixels, from the top edge of the control's container. Wartość jest przypisana do Top właściwości.The value is assigned to the Top property.
- width
- Int32
Szerokość formantu (w pikselach).The width of the control, in pixels. Wartość jest przypisana do Width właściwości.The value is assigned to the Width property.
- height
- Int32
Wysokość formantu (w pikselach).The height of the control, in pixels. Wartość jest przypisana do Height właściwości.The value is assigned to the Height property.
Uwagi
ControlKlasa jest klasą bazową dla wszystkich kontrolek używanych w aplikacji Windows Forms.The Control class is the base class for all controls used in a Windows Forms application. Ponieważ ta klasa nie jest zazwyczaj używana do tworzenia wystąpienia klasy, ten Konstruktor zazwyczaj nie jest wywoływany bezpośrednio, ale jest wywoływany przez klasę pochodną.Because this class is not typically used to create an instance of the class, this constructor is typically not called directly but is instead called by a derived class.
Ta wersja Control konstruktora ustawia początkową Text wartość właściwości na text
wartość parametru.This version of the Control constructor sets the initial Text property value to the text
parameter value. Konstruktor dodaje również formant do kontrolki nadrzędnej Control.ControlCollection .The constructor also adds the control to the parent control's Control.ControlCollection. Początkowa Size i Location kontrolka są określane przez left
top
width
height
wartości parametrów, i.The initial Size and Location of the control are determined by the left
, top
, width
and height
parameter values.
Uwaga
Aby zachować lepszą wydajność, nie ustawiaj rozmiaru formantu w jego konstruktorze.To maintain better performance, do not set the size of a control in its constructor. Preferowaną metodą jest zastąpienie DefaultSize właściwości.The preferred method is to override the DefaultSize property.