2024-05-01 10:31:55 -04:00

26 lines
604 B
C#

using Avalonia.Controls;
using Avalonia.Controls.Templates;
using SPTInstaller.ViewModels;
namespace SPTInstaller;
public class ViewLocator : IDataTemplate
{
public Control Build(object data)
{
var name = data.GetType().FullName!.Replace("ViewModel", "View");
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;
}
}