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