Skip to content

Commit

Permalink
add homepage and help links
Browse files Browse the repository at this point in the history
  • Loading branch information
loamen committed Aug 16, 2018
1 parent 1f0372b commit bf37dc6
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 13 deletions.
3 changes: 3 additions & 0 deletions src/Kalman.Studio/Kalman.Studio.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@
<PropertyGroup>
<SignManifests>false</SignManifests>
</PropertyGroup>
<PropertyGroup>
<StartupObject>Kalman.Studio.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<Reference Include="Aspose.Cells, Version=18.7.0.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL">
<HintPath>..\packages\Aspose.Cells.18.7.0\lib\net40\Aspose.Cells.dll</HintPath>
Expand Down
54 changes: 46 additions & 8 deletions src/Kalman.Studio/MainForm/Main.Designer.cs

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

16 changes: 16 additions & 0 deletions src/Kalman.Studio/MainForm/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
using WeifenLuo.WinFormsUI.Docking;
using System.IO;
using Kalman.Data.SchemaObject;
using System.Diagnostics;

namespace Kalman.Studio
{
Expand Down Expand Up @@ -477,6 +478,20 @@ private void menuItemAbout_Click(object sender, EventArgs e)
(new About()).ShowDialog();
}

private void tsmiHomePage_Click(object sender, EventArgs e)
{
Process.Start("https://github.com/loamen/Kalman.Studio");
}

private void tsmiIssu_Click(object sender, EventArgs e)
{
Process.Start("https://github.com/loamen/Kalman.Studio/issues");
}

private void tsmiDownload_Click(object sender, EventArgs e)
{
Process.Start("https://github.com/loamen/Kalman.Studio/releases");
}
#endregion

#region 工具栏命令事件处理
Expand Down Expand Up @@ -662,5 +677,6 @@ private void DelegateSetStatusText(string text)
}

#endregion

}
}
10 changes: 5 additions & 5 deletions src/Kalman.Studio/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
[assembly: AssemblyTitle("Kalman.Studio")]
[assembly: AssemblyDescription(".Net平台开发辅助工具")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Kalman")]
[assembly: AssemblyCompany("Loamen")]
[assembly: AssemblyProduct("Kalman.Studio")]
[assembly: AssemblyCopyright("Copyright © 2013")]
[assembly: AssemblyTrademark("Kalman")]
[assembly: AssemblyCopyright("Copyright ©loamen.com 2013-2018")]
[assembly: AssemblyTrademark("Loamen")]
[assembly: AssemblyCulture("")]

// 将 ComVisible 设置为 false 使此程序集中的类型
Expand All @@ -32,5 +32,5 @@
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
// 方法是按如下所示使用“*”:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.2.1.*")]
[assembly: AssemblyFileVersion("2.2.1")]
[assembly: AssemblyVersion("2.2.2.*")]
[assembly: AssemblyFileVersion("2.2.2")]

0 comments on commit bf37dc6

Please sign in to comment.