1
0
Cardidi cdcd1d62ab fix: Adjust api namespace
feat: Add Avalonia client base.
2025-03-27 02:06:48 +08:00

30 lines
685 B
C#

using System;
using Avalonia.Controls;
using Avalonia.Controls.Templates;
using Flawless.Client.ViewModels;
namespace Flawless.Client;
public class ViewLocator : IDataTemplate
{
public Control? Build(object? param)
{
if (param is null)
return null;
var name = param.GetType().FullName!.Replace("ViewModel", "View", StringComparison.Ordinal);
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;
}
}