forked from atomex-me/atomex.client.desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ViewLocator.cs
36 lines (30 loc) · 922 Bytes
/
ViewLocator.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using Avalonia.Controls;
using Avalonia.Controls.Templates;
using Atomex.Client.Desktop.ViewModels;
namespace Atomex.Client.Desktop
{
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)
{
name = data.GetType().BaseType?.FullName!.Replace("ViewModel", "View");
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;
}
}
}