I am having issues with displaying the label text when its added to the ScrollView.
I basically generated a label, then added it to the scrollview memo, but it shows nothing on the screen. Any ideas?
I basically generated a label, then added it to the scrollview memo, but it shows nothing on the screen. Any ideas?
Dim lblMemo As Label
lblMemo.Initialize(Me)
lblMemo.Height = 2000dip
lblMemo.TextColor = Colors.Black
lblMemo.Text = "hello world!"
ScrollView_Memo.Panel.AddView(lblMemo, 0dip, 0dip, ScrollView_Memo.Width, lblMemo.Height)