1
0

feat: got stuck with bug of Community.Mvvm generating codes

This commit is contained in:
2025-11-18 14:50:17 +08:00
parent 02118f4c0a
commit a1b1fcbf7b
11 changed files with 184 additions and 31 deletions

View File

@@ -0,0 +1,23 @@
using CommunityToolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BallanceTasEditor.ViewModels {
public partial class NewFileDialog : ObservableObject {
[ObservableProperty]
private int count;
[ObservableProperty]
private int fps;
public NewFileDialog() {
Count = 10000;
// 132 or 264
Fps = 264;
}
}
}