Skip to content

Commit

Permalink
some fixes
Browse files Browse the repository at this point in the history
Graph ColorSet optimized for better look.
Y-Axis are now all shown in black.
Curve width was redused to 1.0
Added ability to select\unselect curves by Shift+LeftButton click.
Code cleanup.
  • Loading branch information
yuriqdev committed Jun 21, 2018
1 parent 4a0e7bf commit cf96f50
Show file tree
Hide file tree
Showing 9 changed files with 609 additions and 82 deletions.
21 changes: 14 additions & 7 deletions WinCCFlexArchViewer/About.Designer.cs

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

20 changes: 11 additions & 9 deletions WinCCFlexArchViewer/About.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Diagnostics;
using System.Windows.Forms;
using WinCCFlexLogViewer.Properties;
//using WinCCFlexLogViewer.Properties;

namespace WinCCFlexLogViewer
{
Expand All @@ -10,15 +10,11 @@ public partial class About : Form
public About()
{
InitializeComponent();
}

//
/* private void About_Load(object sender, EventArgs e)
{
// base.Icon = Resources.logo1;
} */
var version = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
DateTime buildDate = new DateTime(2000, 1, 1).AddDays(version.Build).AddSeconds(version.Revision * 2);
lblBuild.Text = buildDate.ToString();
}

//
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
linkLabel1.LinkVisited = true;
Expand All @@ -29,5 +25,11 @@ private void button1_Click(object sender, EventArgs e)
{
Close();
}

private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
linkLabel1.LinkVisited = true;
Process.Start("https://github.com/yuriqdev/WinCCflexLogViewer");
}
}
}
Loading

0 comments on commit cf96f50

Please sign in to comment.