Would it be interesting if I posted here my version of your quicklaunch? :P
I put 4 app by row and am searchin right now how to put bigger icons (I'm so proud cause it's the first time ever I modify a code to fit my needs XD)
Jo_keks I just have a single problem, the + to add applications aren't centered with icons maybe if I show you the code you can tell me
if (a != "")
{
Appbtn btn;
tbl.GetValue("pos",helper);
helper -= 1;
Controls.Add(btn);
btn.Set(x,y,Device.AutoScaleValue(20),Device.AutoScaleValue(20),a);
btn.AddHelper(helper);
btn.removed = Reload;
if (x <= Device.AutoScaleValue(180))
{
x += Device.AutoScaleValue(64);
}
else
{
x = Device.AutoScaleValue(15);
y += Device.AutoScaleValue(60);
}
}
else
{
Applbl lbl;
tbl.GetValue("pos",helper);
helper -= 1;
Controls.Add(lbl);
lbl.Set(x,y,Device.AutoScaleValue(40),Device.AutoScaleValue(40));
lbl.AddHelper(helper);
lbl.ReloadNeeded = Reload;
if (x <= Device.AutoScaleValue(180))
{
x += Device.AutoScaleValue(45);
}
else
{
x = Device.AutoScaleValue(15);
y += Device.AutoScaleValue(45);
}
}
}
}
I modifyied values so that I add 4 icons per line, I prefer it that way (nicer IMO)