Guest User

Untitled

a guest
Nov 17th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. private void lbAnswers_Format(object sender, ListControlConvertEventArgs e)
  2. {
  3. Question ques = e.ListItem as Question;
  4. if (ques != null)
  5. {
  6. var items = (sender as ListControl).DataSource as IList<Question>;
  7. if (items != null)
  8. e.Value = items.IndexOf(ques) + 1 + ". " + ques.Text;
  9. }
  10. }
Add Comment
Please, Sign In to add comment