aboutsummaryrefslogtreecommitdiff
path: root/Erable/ViewLocator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Erable/ViewLocator.cs')
-rw-r--r--Erable/ViewLocator.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/Erable/ViewLocator.cs b/Erable/ViewLocator.cs
new file mode 100644
index 0000000..0a6eb01
--- /dev/null
+++ b/Erable/ViewLocator.cs
@@ -0,0 +1,32 @@
+using System;
+using Avalonia.Controls;
+using Avalonia.Controls.Templates;
+using Erable.ViewModels;
+
+namespace Erable
+{
+ public class ViewLocator : IDataTemplate
+ {
+ public bool SupportsRecycling => false;
+
+ public IControl Build(object data)
+ {
+ var name = data.GetType().FullName!.Replace("ViewModel", "View");
+ var type = 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;
+ }
+ }
+} \ No newline at end of file