(25 pts.) Write a Windows application that
displays Lottery random numbers. The input textbox txtNumber contains the
number of lottery numbers. The input textbox txtMax specifies the maximum
value of the lottery numbers.
The numbers are chosen between 1 and max inclusive,
where max is the integer in the textbox txtMax. Output the lottery numbers
in the listbox lstLotto.
Write two TextChanged event handlers for txtNumber and txtMax that call
a DisplayLottoNumbers function whenever either of the input textboxes
are changed.