pomodoro/ViewLocator.cs

22 lines
545 B
C#
Raw Normal View History

2022-01-11 07:51:12 +00:00
using System;
using Avalonia.Controls;
using Avalonia.Controls.Templates;
using pomodoro.ViewModels;
namespace pomodoro {
public class ViewLocator : IDataTemplate {
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; }
}
}