mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-16 14:15:57 -06:00
20 lines
533 B
C#
20 lines
533 B
C#
using PhotoFrame.Logic.BL;
|
|
using PhotoFrame.Logic.Config;
|
|
using PhotoFrame.Logic.UI.ViewModels;
|
|
|
|
namespace PhotoFrame.Logic.UI.Views
|
|
{
|
|
public class ViewBorder : ViewBase
|
|
{
|
|
public ViewBorder(IAppModel appModel, IFrameController frameController, IFrameConfig config)
|
|
: base("ViewBorder.qml", appModel, frameController, config)
|
|
{
|
|
}
|
|
|
|
protected override IViewModel CreateViewModel()
|
|
{
|
|
return new ViewModelBorder(FrameController, FrameConfig);
|
|
}
|
|
|
|
}
|
|
}
|