30 строки
661 B
C#
30 строки
661 B
C#
using System;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Controls.Templates;
|
|
using NodeEditorDemo.ViewModels;
|
|
|
|
namespace NodeEditorDemo;
|
|
|
|
public class ViewLocator : IDataTemplate
|
|
{
|
|
public Control Build(object? data)
|
|
{
|
|
var name = data?.GetType().FullName?.Replace("ViewModel", "View");
|
|
var type = name is null ? null : 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;
|
|
}
|
|
}
|