mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
28 lines
670 B
C#
28 lines
670 B
C#
using System;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Controls.Templates;
|
|
using KfChatDotNetGui.ViewModels;
|
|
|
|
namespace KfChatDotNetGui
|
|
{
|
|
public class ViewLocator : IDataTemplate
|
|
{
|
|
public Control Build(object data)
|
|
{
|
|
var name = data.GetType().FullName!.Replace("ViewModel", "View");
|
|
var 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;
|
|
}
|
|
}
|
|
} |