~ruther/NosTale-PacketLogger

ref: 4d6087e1bd00b4880cd83790ca7fc71f34986bfe NosTale-PacketLogger/src/PacketLogger/ViewLocator.cs -rw-r--r-- 966 bytes
4d6087e1 — František Boháček chore: add packetlogger folder structure 2 years ago
                                                                                
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
37
38
39
40
41
//
//  ViewLocator.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using Avalonia.Controls;
using Avalonia.Controls.Templates;
using PacketLogger.ViewModels;

namespace PacketLogger;

/// <inheritdoc />
public class ViewLocator : IDataTemplate
{
    /// <inheritdoc />
    public IControl Build(object? data)
    {
        if (data is null)
        {
            return new TextBlock { Text = "View not selected." };
        }

        var name = data.GetType().FullName!.Replace("ViewModel", "View");
        var type = Type.GetType(name);

        if (type != null)
        {
            return (Control)Activator.CreateInstance(type)!;
        }

        return new TextBlock { Text = "Not Found: " + name };
    }

    /// <inheritdoc />
    public bool Match(object? data)
    {
        return data is ViewModelBase;
    }
}
Do not follow this link