21 lines
434 B
C#
21 lines
434 B
C#
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();
|
|
}
|
|
}
|
|
}
|