10 lines
169 B
C#
10 lines
169 B
C#
using Microsoft.UI.Xaml;
|
|
|
|
namespace Hyperbar.UI.Windows;
|
|
|
|
public interface IViewModelContentBinder
|
|
{
|
|
void Bind(FrameworkElement view,
|
|
object context);
|
|
}
|