CtrEditor/App.xaml.cs

16 lines
244 B
C#
Raw Permalink Normal View History

2024-05-01 14:45:20 -03:00
using System.Configuration;
using System.Data;
using System.Windows;
namespace CtrEditor
{
2024-05-02 11:06:45 -03:00
public partial class App : System.Windows.Application
2024-05-01 14:45:20 -03:00
{
2024-05-02 11:06:45 -03:00
public App()
{
InitializeComponent();
}
2024-05-01 14:45:20 -03:00
}
}
2024-05-02 11:06:45 -03:00