111,097
社区成员




private void frmSpeech_Load(object sender, EventArgs e)
{
txtContent.VScroll += new EventHandler(txtContent_VScroll);
}
private void txtContent_VScroll(object sender, EventArgs e)
{
if (btnPlay.Text == ">")
{
SendKeys.Send("{PGDN}");
}
}