Costruttore.
Namespace:
QsUI
Assembly:
QsUI (in QsUI.dll) Versione: 1.0.0.0 (1.0.0.0)
Sintassi public FormBarProg(
int minValue,
int maxValue,
int stepValue,
bool autoShow = true,
bool autoClose = true,
bool topMost = true,
bool disableCancelButton = true,
bool hasProgr = true
)
Public Sub New (
minValue As Integer,
maxValue As Integer,
stepValue As Integer,
Optional autoShow As Boolean = true,
Optional autoClose As Boolean = true,
Optional topMost As Boolean = true,
Optional disableCancelButton As Boolean = true,
Optional hasProgr As Boolean = true
)
public:
FormBarProg(
int minValue,
int maxValue,
int stepValue,
bool autoShow = true,
bool autoClose = true,
bool topMost = true,
bool disableCancelButton = true,
bool hasProgr = true
)
new :
minValue : int *
maxValue : int *
stepValue : int *
?autoShow : bool *
?autoClose : bool *
?topMost : bool *
?disableCancelButton : bool *
?hasProgr : bool
(* Defaults:
let _autoShow = defaultArg autoShow true
let _autoClose = defaultArg autoClose true
let _topMost = defaultArg topMost true
let _disableCancelButton = defaultArg disableCancelButton true
let _hasProgr = defaultArg hasProgr true
*)
-> FormBarProg
Parametri
- minValue
- Tipo: SystemInt32
Valore di partenza. - maxValue
- Tipo: SystemInt32
Valore di arrivo. - stepValue
- Tipo: SystemInt32
Valore di incremento. - autoShow (Optional)
- Tipo: SystemBoolean
Indica se mostrare il form in automatico (nel caso di marquee deve per forza essere visualizzato dall'utente) - autoClose (Optional)
- Tipo: SystemBoolean
Indica se chiudere il form in automatico (nel caso di marquee deve per forza essere chiuso dall'utente) - topMost (Optional)
- Tipo: SystemBoolean
Indica se il form deve essere in primo piano - disableCancelButton (Optional)
- Tipo: SystemBoolean
Indica se disabilitare il pulsante di cancel - hasProgr (Optional)
- Tipo: SystemBoolean
Indica se mostrare la barra di progressione o se è marquee
Vedi anche