DUVIDAS EM FLOWLAYOUTPANEL

THRON 19/02/2016 22:46:16
#457956
Como uma foto que o KURTGU mandou para mim em uns posts,

cara como faço para por essas [Ô]sombras[Ô] em baixo da foto e fazer o Flow ir para o lado ->



e também outra duvida, segue o codigo de como eu crio as imagens:

   For i = 0 To TotalGRID - 1
img = New PictureBox
img.Text = i.ToString()
img.Name = [Ô]PictureBox[Ô] + i.ToString()
img.Cursor = Cursors.Hand
img.BackColor = Color.FromArgb(&HFF0000)
img.Height = 260
img.Width = 180
img.SizeMode = PictureBoxSizeMode.StretchImage
img.BorderStyle = BorderStyle.FixedSingle
FlowLayoutPanel1.Controls.Add(img)
FlowLayoutPanel1.VerticalScroll.Enabled = True
AddHandler img.Click, AddressOf img_click


DataGridView1.CurrentCell = DataGridView1.Rows(i).Cells(2)
Dim bits As Byte() = CType(DataGridView1.CurrentRow.Cells(2).Value, Byte())
Dim memorybits As New MemoryStream(bits)
Dim bitmap As New Bitmap(memorybits)
Dim c As PictureBox = img
Dim Nome As String = DataGridView1.CurrentRow.Cells(1).Value
Select Case c.Text
Case i
img.Image = bitmap
img.Tag = Nome
End Select


Next


Como faço para criar Labels em baixo de cada foto e colocar os nomes?????
KURTGU 20/02/2016 19:42:05
#457968
Resposta escolhida
1 - Isso e um simples usercontrol com uma picturebox

2- pra arrumar a direcao dos items no flowlayout panel e so mudar a opcao flowdirection...

THRON 21/02/2016 00:41:12
#457972
como usar um user control??
KURTGU 21/02/2016 00:58:36
#457973
Citação:

:
como usar um user control??



No google vc encontrara bastente material sobre isto...
https://www.google.com.br/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=user%20control%20vb.net
Tópico encerrado , respostas não são mais permitidas