From 064dbb3f410b2b95fede248be7b57179e762db0b Mon Sep 17 00:00:00 2001 From: uvok Date: Sat, 16 May 2026 19:40:09 +0200 Subject: Initial commit --- ViewLocator.cs | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 ViewLocator.cs (limited to 'ViewLocator.cs') diff --git a/ViewLocator.cs b/ViewLocator.cs new file mode 100644 index 0000000..c8b4776 --- /dev/null +++ b/ViewLocator.cs @@ -0,0 +1,37 @@ +using System; +using System.Diagnostics.CodeAnalysis; +using Avalonia.Controls; +using Avalonia.Controls.Templates; +using east_auctioner.ViewModels; + +namespace east_auctioner; + +/// +/// Given a view model, returns the corresponding view if possible. +/// +[RequiresUnreferencedCode( + "Default implementation of ViewLocator involves reflection which may be trimmed away.", + Url = "https://docs.avaloniaui.net/docs/concepts/view-locator")] +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; + } +} -- cgit v1.2.3