32 lines
786 B
C#
32 lines
786 B
C#
|
using AddressBook_MVVMSampleV2.Interface;
|
|||
|
using AddressBook_MVVMSampleV2.ViewModel;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Windows;
|
|||
|
using System.Windows.Controls;
|
|||
|
using System.Windows.Data;
|
|||
|
using System.Windows.Documents;
|
|||
|
using System.Windows.Input;
|
|||
|
using System.Windows.Media;
|
|||
|
using System.Windows.Media.Imaging;
|
|||
|
using System.Windows.Shapes;
|
|||
|
|
|||
|
namespace AddressBook_MVVMSampleV2.View
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// MainView.xaml에 대한 상호 작용 논리
|
|||
|
/// </summary>
|
|||
|
public partial class MainView : Window, IWindowView
|
|||
|
{
|
|||
|
public MainView(MainViewModel viewModel)
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
|
|||
|
this.DataContext = viewModel;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|