#Region Project Attributes
#ApplicationLabel: B4A Example
#VersionCode: 1
#VersionName:
'SupportedOrientations possible values: unspecified, landscape or portrait.
#SupportedOrientations: unspecified
#CanInstallToExternalStorage: False
#End Region
#Region Activity Attributes
#FullScreen: False
#IncludeTitle: True
#End Region
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim scr As ScrollView
Dim left1 , top1 As Int
left1 =5%x
top1 = 20%x
End Sub
Sub p_Click
Dim p1 As Panel
p1 = Sender
ToastMessageShow(p1.Tag,False)
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
'Activity.LoadLayout("Layout1")
scr.Initialize2(20%y,"scr")
Activity.AddView(scr,0%x,0%y,100%x,100%y)
For i = 1 To 11
Dim p As Panel
p.Initialize("p")
'تعیین رنگ به صورت راندوم از طریق اینت
''''''''''
p.Color = Colors.Red
scr.Panel.AddView(p,left1,top1,45%x,30%y)
left1 = left1 + 46%x
p.Tag = i
If i Mod 2 = 0 Then
top1 = top1 + 31%y
scr.Panel.Height = top1 + 31%y
left1 = 5%x
End If
Next
If i =2 Then
p.Color = Colors.Yellow
End If
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
خب مشکل اینجاس که من میخوام پنل شماره 2 رو مثلا رنگش رو زرد کنم ولی با if تونستم
سوال
alinoori 123
این سورس مربوط به پنل دو ستونه میشه
خب مشکل اینجاس که من میخوام پنل شماره 2 رو مثلا رنگش رو زرد کنم ولی با if تونستم
If i =2 Then
p.Color = Colors.Yellow
End If
لینک ارسال
به اشتراک گذاری در سایت های دیگر
2 پاسخ به این سوال تاکنون داده شده است
ارسالهای توصیه شده
بایگانی شده
این موضوع بایگانی و قفل شده و دیگر امکان ارسال پاسخ نیست.