added stylecop (#1933)

* added stylecop

* removed xml documentation

* used common stylecop file
This commit is contained in:
Lavius Motileng
2020-04-07 10:19:14 -07:00
parent 89b44f5126
commit cea6b7067a
53 changed files with 626 additions and 536 deletions

View File

@@ -5,7 +5,7 @@
using System;
using System.Windows;
using Microsoft.PowerToys.Settings.UI.Views;
using System.Threading;
using Microsoft.Toolkit.Wpf.UI.XamlHost;
namespace Microsoft.PowerToys.Settings.UI.Runner
{
@@ -26,16 +26,10 @@ namespace Microsoft.PowerToys.Settings.UI.Runner
if (shellPage != null)
{
// send IPC Message
shellPage.SetDefaultSndMessageCallback(delegate (string msg)
shellPage.SetDefaultSndMessageCallback(msg =>
{
Program.ipcmanager.SendMessage(msg);
Program.GetTwoWayIPCManager().SendMessage(msg);
});
}
}
if (shellPage != null)
{
}
}
}