16 lines
261 B
C#
16 lines
261 B
C#
|
|
using System.Windows;
|
||
|
|
|
||
|
|
namespace DellMonitorControl;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Interaction logic for MainWindow.xaml
|
||
|
|
/// </summary>
|
||
|
|
public partial class MainWindow : Window
|
||
|
|
{
|
||
|
|
public MainWindow()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
this.Hide();
|
||
|
|
}
|
||
|
|
}
|