Umbau
This commit is contained in:
20
KanSan/DialogWindowService.cs
Normal file
20
KanSan/DialogWindowService.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using KanSan.Base.Interfaces;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Text;
|
||||
using System.Windows;
|
||||
using System.Windows.Input;
|
||||
|
||||
namespace KanSan
|
||||
{
|
||||
class DialogWindowService: IDialogWindowService
|
||||
{
|
||||
public void showWindow(object viewModel)
|
||||
{
|
||||
Window win = new Window();
|
||||
win.Content = viewModel;
|
||||
win.Show();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user