mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
* add(windowWalkerComponents): added a "Responding" variable signifying if a process is responding or not * add(win32NativeMethod): added "SendMessageTimeout" method in the common Win32 namespace * refactor(windowWalkerWindow): added an implementation of the helper function for closing the window using the newly defined method refactor(windowWalkerWindow): added a thread to run, whenever "CloseThisWindow" is called * refactor(resultHelper): used localizable strings for printing the responding text add(resources): added "Not Responding" localizable text to the resources file * refactor(resultHelper): refactored the message in case of a "Not Responding" task * refactor(resultHelper): modified the formatting of the subtitle * refactor(window): refactored the helper function and removed the unnecessary variable * refactor(windowProcess): changed the variable name from "Responding" to "IsResponding" * add: added try-catch to isResponding getter
316 lines
13 KiB
C#
316 lines
13 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
// Runtime Version:4.0.30319.42000
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace Microsoft.Plugin.WindowWalker.Properties {
|
|
using System;
|
|
|
|
|
|
/// <summary>
|
|
/// A strongly-typed resource class, for looking up localized strings, etc.
|
|
/// </summary>
|
|
// This class was auto-generated by the StronglyTypedResourceBuilder
|
|
// class via a tool like ResGen or Visual Studio.
|
|
// To add or remove a member, edit your .ResX file then rerun ResGen
|
|
// with the /str option, or rebuild your VS project.
|
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
|
public class Resources {
|
|
|
|
private static global::System.Resources.ResourceManager resourceMan;
|
|
|
|
private static global::System.Globalization.CultureInfo resourceCulture;
|
|
|
|
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
|
internal Resources() {
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the cached ResourceManager instance used by this class.
|
|
/// </summary>
|
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
public static global::System.Resources.ResourceManager ResourceManager {
|
|
get {
|
|
if (object.ReferenceEquals(resourceMan, null)) {
|
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Plugin.WindowWalker.Properties.Resources", typeof(Resources).Assembly);
|
|
resourceMan = temp;
|
|
}
|
|
return resourceMan;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Overrides the current thread's CurrentUICulture property for all
|
|
/// resource lookups using this strongly typed resource class.
|
|
/// </summary>
|
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
public static global::System.Globalization.CultureInfo Culture {
|
|
get {
|
|
return resourceCulture;
|
|
}
|
|
set {
|
|
resourceCulture = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Close window.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_Close {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_Close", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Desktop.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_Desktop {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_Desktop", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Folder windows do not run in separate processes. (Click to open Explorer properties.).
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_ExplorerInfoSubTitle {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_ExplorerInfoSubTitle", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Info: Killing the Explorer process isn't possible..
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_ExplorerInfoTitle {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_ExplorerInfoTitle", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Kill process.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_Kill {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_Kill", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Your are going to kill the following process:.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_KillMessage {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_KillMessage", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Continue?.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_KillMessageQuestion {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_KillMessageQuestion", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Kill process confirmation.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_KillMessageTitle {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_KillMessageTitle", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Because this is an app process, all instances of the app will be killed. Continue?.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_KillMessageUwp {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_KillMessageUwp", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Not Responding.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_NotResponding {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_NotResponding", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to No..
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_Number {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_Number", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Switches between open windows.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_plugin_description {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_plugin_description", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Window Walker.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_plugin_name {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_plugin_name", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Process name.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_Process {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_Process", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Process id.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_ProcessId {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_ProcessId", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Running.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_Running {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_Running", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Request confirmation when killing a process.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_SettingConfirmKillProcess {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_SettingConfirmKillProcess", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Hide Explorer process information.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_SettingExplorerSettingInfo {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_SettingExplorerSettingInfo", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to This message is only shown when searching with a direct activation command..
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_SettingExplorerSettingInfo_Description {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_SettingExplorerSettingInfo_Description", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Hide "kill process" button if additional permissions required.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_SettingHideKillProcess {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_SettingHideKillProcess", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Kill process and its child processes.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_SettingKillProcessTree {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_SettingKillProcessTree", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Be careful when activating this. Killing the whole process tree can lead to problematic application crashes..
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_SettingKillProcessTree_Description {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_SettingKillProcessTree_Description", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Stay open after closing windows and killing processes.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_SettingOpenAfterKillAndClose {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_SettingOpenAfterKillAndClose", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to This feature won't work if the kill process confirmation is enabled..
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_SettingOpenAfterKillAndClose_Description {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_SettingOpenAfterKillAndClose_Description", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Show only results from visible desktop.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_SettingResultsVisibleDesktop {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_SettingResultsVisibleDesktop", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Show desktop name in the subtitle.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_SettingSubtitleDesktopName {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_SettingSubtitleDesktopName", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to This information is only shown in subtitle and tool tip, if you have at least two desktops..
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_SettingSubtitleDesktopName_Description {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_SettingSubtitleDesktopName_Description", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Show process id in the subtitle.
|
|
/// </summary>
|
|
public static string wox_plugin_windowwalker_SettingSubtitlePid {
|
|
get {
|
|
return ResourceManager.GetString("wox_plugin_windowwalker_SettingSubtitlePid", resourceCulture);
|
|
}
|
|
}
|
|
}
|
|
}
|