Files
Stone_Red 7783ebb2e9 Add GUI template
- Add AvaloniaUI GUI template to the project
- Add missing newline to the CLI output
2022-02-20 16:07:06 +01:00

33 lines
739 B
C#

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