This commit is contained in:
Sakura
2024-01-25 22:35:00 +08:00
parent e85766dcc5
commit af2e243f07
16 changed files with 997 additions and 9 deletions

View File

@@ -0,0 +1,27 @@
using CPF.Controls;
using System;
using System.Collections.Generic;
using System.Text;
namespace CPF.Toolkit.Demo
{
internal class MainViewModel : ViewModelBase
{
protected override void OnLoaded()
{
}
public void Test()
{
this.Close();
}
//protected override void OnClosing(ClosingEventArgs e)
//{
// e.Cancel = true;
// base.OnClosing(e);
//}
}
}