0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-12 16:50:45 -05:00
patcher/Patcher/PatchGenerator/ViewLocator.cs

31 lines
719 B
C#

using Avalonia.Controls;
using Avalonia.Controls.Templates;
using PatchGenerator.ViewModels;
using System;
namespace PatchGenerator
{
public class ViewLocator : IDataTemplate
{
public IControl Build(object data)
{
var name = data.GetType().FullName!.Replace("ViewModel", "View");
var type = Type.GetType(name);
if (type != null)
{
return (Control)Activator.CreateInstance(type)!;
}
else
{
return new TextBlock { Text = "Not Found: " + name };
}
}
public bool Match(object data)
{
return data is ViewModelBase;
}
}
}