34 lines
875 B
C#
34 lines
875 B
C#
// <copyright file="App.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
using System;
|
|
using Microsoft.Win32;
|
|
using FSI.BT.Tools.TimeStampToClipboard.Business;
|
|
using FSI.BT.Tools.Global.Utilities;
|
|
|
|
namespace FSI.BT.Tools.TimeStampToClipboard
|
|
{
|
|
/// <summary>
|
|
/// App contains the notifyicon, the taskbarform and the menus.
|
|
/// </summary>
|
|
internal class App : IDisposable
|
|
{
|
|
private readonly Main menus = new();
|
|
|
|
public App()
|
|
{
|
|
AppRestart.BeforeRestarting += Dispose;
|
|
SystemEvents.DisplaySettingsChanged += SystemEvents_DisplaySettingsChanged;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
|
|
}
|
|
|
|
private void SystemEvents_DisplaySettingsChanged(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |