mirror of
https://github.com/Bjanski/ExAd.git
synced 2024-08-30 16:52:14 +00:00
Added ExAd_fnc_createCombo
This commit is contained in:
parent
3463f534da
commit
d113445fef
@ -23,6 +23,7 @@ file = "ExAdClient\XM8\Functions";
|
||||
class createBackgroundGUI {};
|
||||
class createButton {};
|
||||
class createCheckBox {};
|
||||
class createCombo {};
|
||||
class createCtrlGrp {};
|
||||
class createEdit {};
|
||||
class createExtraApps {};
|
||||
|
@ -0,0 +1,9 @@
|
||||
params ["_display","_parent","_idc","_position","_actionOnSelChanged","_tooltip","_ctrl"];
|
||||
|
||||
_ctrl = _display ctrlCreate ["RscCombo",_idc,_parent];
|
||||
_ctrl ctrlSetPosition _position;
|
||||
_ctrl ctrlSetEventHandler ["LBSelChanged",_actionOnSelChanged];
|
||||
_ctrl ctrlSetTooltip _tooltip;
|
||||
_ctrl ctrlCommit 0;
|
||||
|
||||
_ctrl
|
Loading…
Reference in New Issue
Block a user