You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
763 B
32 lines
763 B
using Avalonia.Controls;
|
|
using Avalonia.Controls.Templates;
|
|
using System;
|
|
using UserInterface.ViewModels;
|
|
|
|
namespace UserInterface
|
|
{
|
|
public class ViewLocator : IDataTemplate
|
|
{
|
|
public bool SupportsRecycling => false;
|
|
|
|
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;
|
|
}
|
|
}
|
|
} |