mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
added stylecop (#1933)
* added stylecop * removed xml documentation * used common stylecop file
This commit is contained in:
@@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user