0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 09:50:43 -05:00
launcher/project/Aki.Launcher/ViewLocator.cs
2023-03-03 19:25:33 +00:00

31 lines
715 B
C#

using Aki.Launcher.ViewModels;
using Avalonia.Controls;
using Avalonia.Controls.Templates;
using System;
namespace Aki.Launcher
{
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;
}
}
}