创建MVVM示例项目

This commit is contained in:
于智纯
2026-01-06 14:52:23 +08:00
parent a320ca7d29
commit 171dcffb96
12 changed files with 223 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
using System;
using Avalonia.Controls;
using Avalonia.Controls.Templates;
using MVVMExample.ViewModels;
namespace MVVMExample
{
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;
}
}
}