My userControl1.cs contains a text box and a picture box how do I add a property to my class to allow it to get a picture from a url string
this is what i have so far
public partial class UserControl1 : UserControl
{
public UserControl1()
{
InitializeComponent();
}
public override string Text
{
get
{
return textBox1.Text;
}
set
{
textBox1.Text = value;
}
}
}