mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
32 lines
753 B
C#
32 lines
753 B
C#
|
|
using System;
|
||
|
|
using Aaru.Gui.ViewModels;
|
||
|
|
using Avalonia.Controls;
|
||
|
|
using Avalonia.Controls.Templates;
|
||
|
|
|
||
|
|
namespace Aaru.Gui
|
||
|
|
{
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|