我在C#Winform中构建了一个带有播放和暂停按钮的基本录音机。 这一切都很好,但我需要做的是以某种方式保存/记住暂停的记录的当前位置,然后在该位置之后恢复,即使应用程序已关闭。没有使用数据库,这有可能吗?如果是这样,请多说一点。我的代码如下:
public void button1_Click(System.Object sender, System.EventArgs e)
{
record("open new Type waveaudio Alias recsound", "", 0, 0);
record("record recsound", "", 0, 0);
}
private void button7_Click_1(object sender, EventArgs e)
{
record("pause recsound", "", 0, 0);
}