Skip to content

Commit

Permalink
Merge pull request #18 from Mijo-Software/mjohne-patch-1
Browse files Browse the repository at this point in the history
Add files via upload
  • Loading branch information
mjohne authored Aug 8, 2020
2 parents dda20b9 + 50a6500 commit 49668b7
Show file tree
Hide file tree
Showing 8 changed files with 393 additions and 88 deletions.
3 changes: 1 addition & 2 deletions DisksizeWatcher/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

377 changes: 299 additions & 78 deletions DisksizeWatcher/MainForm.cs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions DisksizeWatcher/MainForm.resx
Original file line number Diff line number Diff line change
Expand Up @@ -5366,6 +5366,9 @@
<metadata name="contextMenuStripFreeSpaceUnits.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>626, 15</value>
</metadata>
<metadata name="toolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>301, 16</value>
</metadata>
<metadata name="contextMenuStripTotalSpaceUnits.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>856, 16</value>
</metadata>
Expand Down
12 changes: 6 additions & 6 deletions DisksizeWatcher/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
// Allgemeine Informationen über eine Assembly werden über die folgenden
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
// die einer Assembly zugeordnet sind.
[assembly: AssemblyTitle("DisksizeWatcher")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyTitle("Disksize Watcher")]
[assembly: AssemblyDescription("Control the disk size")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("DisksizeWatcher")]
[assembly: AssemblyCopyright("Copyright © 2020")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCompany("Mijo Software")]
[assembly: AssemblyProduct("Disksize Watcher")]
[assembly: AssemblyCopyright("Copyright © 2020 Mijo Software")]
[assembly: AssemblyTrademark("Disksize Watcher")]
[assembly: AssemblyCulture("")]

// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly
Expand Down
54 changes: 54 additions & 0 deletions DisksizeWatcher/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions DisksizeWatcher/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,26 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="bytes" xml:space="preserve">
<value>bytes</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="fatcow-wrench-16" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\fatcow-wrench-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gigabytes" xml:space="preserve">
<value>gigabytes</value>
</data>
<data name="kilobytes" xml:space="preserve">
<value>kilobytes</value>
</data>
<data name="megabytes" xml:space="preserve">
<value>megabytes</value>
</data>
<data name="pentabytes" xml:space="preserve">
<value>pentabytes</value>
</data>
<data name="terabytes" xml:space="preserve">
<value>terabytes</value>
</data>
</root>
2 changes: 0 additions & 2 deletions DisksizeWatcher/SettingsForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions DisksizeWatcher/SettingsForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@

namespace DisksizeWatcher
{
/// <summary>
/// Show the setting window of the application
/// </summary>
public partial class SettingsForm : Form
{
/// <summary>
/// Get or set to stay on top
/// </summary>
public bool StayOnTop
{
get
Expand All @@ -17,6 +23,9 @@ public bool StayOnTop
}
}

/// <summary>
/// Get or set to minimize to system tray
/// </summary>
public bool MinimizeToSystemTray
{
get
Expand All @@ -29,6 +38,9 @@ public bool MinimizeToSystemTray
}
}

/// <summary>
/// Set or set the refresh rate
/// </summary>
public int RefreshRate
{
get
Expand Down

0 comments on commit 49668b7

Please sign in to comment.