diff --git a/VPet.ModMaker/Models/I18nData.cs b/VPet.ModMaker/Models/I18nData.cs new file mode 100644 index 0000000..0cfbcb6 --- /dev/null +++ b/VPet.ModMaker/Models/I18nData.cs @@ -0,0 +1,16 @@ +using HKW.HKWViewModels.SimpleObservable; +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace VPet.ModMaker.Models; + +public class I18nData +{ + public ObservableValue Id { get; } = new(); + public ObservableCollection Cultures { get; } = new(); + public ObservableCollection> Datas { get; } = new(); +} diff --git a/VPet.ModMaker/Styles.xaml b/VPet.ModMaker/Styles.xaml index e37b495..7883356 100644 --- a/VPet.ModMaker/Styles.xaml +++ b/VPet.ModMaker/Styles.xaml @@ -40,6 +40,7 @@ BasedOn="{StaticResource {x:Type TextBlock}}" TargetType="TextBlock"> +