test: 测试 MVVM 模式与绑定

This commit is contained in:
2025-01-24 01:17:06 +08:00
parent f6118e29f8
commit 44de222ed7
16 changed files with 368 additions and 1 deletions

27
TestMvvm/ViewLocator.cs Normal file
View File

@@ -0,0 +1,27 @@
using System;
using Avalonia.Controls;
using Avalonia.Controls.Templates;
using TestMvvm.ViewModels;
namespace TestMvvm;
public class ViewLocator : IDataTemplate
{
public Control? Build(object? param)
{
if (param is null)
return null;
var name = param.GetType().FullName!.Replace("ViewModel", "View", StringComparison.Ordinal);
var type = Type.GetType(name);
if (type != null) return (Control)Activator.CreateInstance(type)!;
return new TextBlock { Text = "Not Found: " + name };
}
public bool Match(object? data)
{
return data is ViewModelBase;
}
}