Support for locking/unlocking and closing other windows

This commit is contained in:
2014-05-06 10:20:34 -04:00
parent 539b2283e7
commit 6a4524b2e2
8 changed files with 226 additions and 35 deletions

View File

@@ -60,6 +60,15 @@ namespace FloatingStatusWindowLibrary.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to All Windows.
/// </summary>
public static string AllWindowsMenu {
get {
return ResourceManager.GetString("AllWindowsMenu", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Bottom.
/// </summary>
@@ -114,6 +123,15 @@ namespace FloatingStatusWindowLibrary.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Close.
/// </summary>
public static string ContextMenuClose {
get {
return ResourceManager.GetString("ContextMenuClose", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Exit.
/// </summary>
@@ -123,6 +141,15 @@ namespace FloatingStatusWindowLibrary.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Lock.
/// </summary>
public static string ContextMenuLock {
get {
return ResourceManager.GetString("ContextMenuLock", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Locked.
/// </summary>
@@ -132,6 +159,15 @@ namespace FloatingStatusWindowLibrary.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Unlock.
/// </summary>
public static string ContextMenuUnlock {
get {
return ResourceManager.GetString("ContextMenuUnlock", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Font _name:.
/// </summary>
@@ -221,5 +257,14 @@ namespace FloatingStatusWindowLibrary.Properties {
return ResourceManager.GetString("VerticalAlignment", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Window.
/// </summary>
public static string WindowMenu {
get {
return ResourceManager.GetString("WindowMenu", resourceCulture);
}
}
}
}

View File

@@ -117,6 +117,9 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="AllWindowsMenu" xml:space="preserve">
<value>All Windows</value>
</data>
<data name="Bottom" xml:space="preserve">
<value>Bottom</value>
</data>
@@ -135,12 +138,21 @@
<data name="ContextMenuChangeAppearance" xml:space="preserve">
<value>Change Appearance...</value>
</data>
<data name="ContextMenuClose" xml:space="preserve">
<value>Close</value>
</data>
<data name="ContextMenuExit" xml:space="preserve">
<value>Exit</value>
</data>
<data name="ContextMenuLock" xml:space="preserve">
<value>Lock</value>
</data>
<data name="ContextMenuLocked" xml:space="preserve">
<value>Locked</value>
</data>
<data name="ContextMenuUnlock" xml:space="preserve">
<value>Unlock</value>
</data>
<data name="FontName" xml:space="preserve">
<value>Font _name:</value>
</data>
@@ -171,4 +183,7 @@
<data name="VerticalAlignment" xml:space="preserve">
<value>_Vertical alignment:</value>
</data>
<data name="WindowMenu" xml:space="preserve">
<value>Window</value>
</data>
</root>