Files
LogViewerControl/CSharp/Applications/AvaloniaNlogDI/ViewLocator.cs
T
Matthias Heil 6bed9b284c initial commit
2026-04-04 13:30:13 +02:00

27 lines
605 B
C#

using Avalonia.Controls;
using Avalonia.Controls.Templates;
using AvaloniaNlogDI.ViewModels;
using System;
namespace AvaloniaNlogDI;
public class ViewLocator : IDataTemplate
{
public IControl Build(object data)
{
string name = data.GetType().FullName!.Replace("ViewModel", "View");
Type? type = Type.GetType(name);
if (type != null)
{
return (Control)Activator.CreateInstance(type)!;
}
return new TextBlock { Text = "Not Found: " + name };
}
public bool Match(object data)
{
return data is ViewModelBase;
}
}