Files
Hyperbar/Hyperbar.UI.Windows/IViewModelContentBinder.cs
2024-02-11 18:09:22 +00:00

10 lines
169 B
C#

using Microsoft.UI.Xaml;
namespace Hyperbar.UI.Windows;
public interface IViewModelContentBinder
{
void Bind(FrameworkElement view,
object context);
}