How to clean a ListBox
?
I made these forms but they did not work:
private void LimparListBox()
{
//lbxResumo.Text = "";
lbxResumo.ClearSelected();
}
private void btnLimparList_Click(object sender, EventArgs e)
{
LimparListBox();
}