|
|
|
|
@ -319,7 +319,7 @@ namespace SlnMesnac.WPF.ViewModel.IndexPage
|
|
|
|
|
/// <param name="obj"></param>
|
|
|
|
|
private void ListClear(object obj)
|
|
|
|
|
{
|
|
|
|
|
if (MessageBox.Show("确认", "确定要清除已生成的数据吗?(该操作不可还原)", MessageBoxButtons.OKCancel) == DialogResult.OK)
|
|
|
|
|
if (MessageBox.Show("确定要清除已生成的数据吗?(该操作不可还原)", "确认", MessageBoxButtons.OKCancel) == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
PreparedWriteList.Clear();
|
|
|
|
|
}
|
|
|
|
|
@ -331,7 +331,7 @@ namespace SlnMesnac.WPF.ViewModel.IndexPage
|
|
|
|
|
/// <param name="obj"></param>
|
|
|
|
|
private void HistoryClear(object obj)
|
|
|
|
|
{
|
|
|
|
|
if (MessageBox.Show("确认", "确定要清除本次写入的数据吗?(可在查看历史中查询以往写入的标签)", MessageBoxButtons.OKCancel) == DialogResult.OK)
|
|
|
|
|
if (MessageBox.Show("确定要清除本次写入的数据吗?(可在查看历史中查询以往写入的标签)", "确认", MessageBoxButtons.OKCancel) == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
TempRecordList.Clear();
|
|
|
|
|
}
|
|
|
|
|
|