Добрый день!
Подскажите, как изменить порядок компонентов в интерфейсе?
Есть компоненты FilterList и ButtonBuySell и ButtonClose, сейчас компоненты кнопок перекрывают выпадающий список FilterList.
class life_weapon_shop
{
idd = 38400;
movingEnabled = false;
enableSimulation = true;
class controlsBackground
{
..............................
class FilterList : Life_RscCombo
{
idc = 38402;
onLBSelChanged = "_this call life_fnc_weaponShopFilter";
x = 0.11; y = 0.64;
w = 0.52; h = 0.035;
};
};
class controls
{
class itemList : Life_RscListBox
{
idc = 38403;
onLBSelChanged = "_this call life_fnc_weaponShopSelection";
sizeEx = 0.035;
x = 0.11; y = 0.25;
w = 0.52; h = 0.38;
};
class ButtonBuySell : Life_RscButtonMenu
{
idc = 38405;
text = "$STR_Global_Buy";
onButtonClick = "[] call life_fnc_weaponShopBuySell";
x = 0.1 + (6.25 / 40) + (1 / 250 / (safezoneW / safezoneH));
y = 0.8 - (1 / 25);
w = (6.25 / 40);
h = (1 / 25);
};
class ButtonClose : life_RscButtonMenu
{
idc = -1;
text = "$STR_Global_Close";
onButtonClick = "closeDialog 0;";
x = 0.1;
y = 0.8 - (1 / 25);
w = (6.25 / 40);
h = (1 / 25);
};
};
};











