26 lines
485 B
C#
26 lines
485 B
C#
using System.Windows;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace CtrEditor
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for wDebug.xaml
|
|
/// </summary>
|
|
|
|
|
|
[ObservableObject]
|
|
public partial class wDebug : Window
|
|
{
|
|
[ObservableProperty]
|
|
Object data;
|
|
|
|
public wDebug()
|
|
{
|
|
InitializeComponent();
|
|
this.DataContext = this; // Establecer el DataContext de la ventana en la misma instancia
|
|
}
|
|
}
|
|
|
|
|
|
}
|