How to set different border styles in picturebox in VB?
How to set different border styles in picturebox in VB?
like:- single line,
double line, doted(...) lines and so on
Please help me as soon as poosible.
with regards
chinna
How to set different border styles in picturebox in VB?
like:- single line,
double line, doted(...) lines and so on
Please help me as soon as poosible.
with regards
chinna
Try something like the following:
Public Class PictureBoxWithBorder Private _BorderStyle As ButtonBorderStyle Public Sub New() Public Property BorderStyle As ButtonBorderStyle Protected Overrides Sub OnPaint(ByVal e As PaintEventArgs) End Class |