aboutsummaryrefslogtreecommitdiff
path: root/ViewLocator.cs
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2021-02-01 22:13:46 -0500
committerAndrew Lee <alee14498@protonmail.com>2021-02-01 22:13:46 -0500
commitc7428fab1c38d29bcc50ee263678504e34d01318 (patch)
treebf5c4a63afc1513d361c6b18fd6c6cf3f0aaaa27 /ViewLocator.cs
parentd5f8e3f543e138b43fca95ed058345b9ab446d2f (diff)
downloaderable-godot-c7428fab1c38d29bcc50ee263678504e34d01318.tar.gz
erable-godot-c7428fab1c38d29bcc50ee263678504e34d01318.tar.bz2
erable-godot-c7428fab1c38d29bcc50ee263678504e34d01318.zip
Moved project files
Diffstat (limited to 'ViewLocator.cs')
-rw-r--r--ViewLocator.cs32
1 files changed, 0 insertions, 32 deletions
diff --git a/ViewLocator.cs b/ViewLocator.cs
deleted file mode 100644
index 0a6eb01..0000000
--- a/ViewLocator.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-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