18 lines
336 B
C#
18 lines
336 B
C#
|
|
using System.Windows;
|
|||
|
|
|
|||
|
|
|
|||
|
|
namespace MSDevTool.Views
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// ObjectView.xaml 的交互逻辑
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class ObjectView : Window
|
|||
|
|
{
|
|||
|
|
public ObjectView(ObjectViewModel viewModel)
|
|||
|
|
{
|
|||
|
|
DataContext = viewModel;
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|