Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.

Commit

Permalink
修复bug,调整UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrs4s committed Dec 3, 2016
1 parent 7acc125 commit 213d504
Show file tree
Hide file tree
Showing 22 changed files with 2,011 additions and 383 deletions.
21 changes: 21 additions & 0 deletions BaiduPanDownload/BaiduPanDownload.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,12 @@
<Compile Include="Data\Operation\Delete.cs" />
<Compile Include="Data\SpaceInfo.cs" />
<Compile Include="Data\Operation\SuperFile.cs" />
<Compile Include="Forms\About.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Forms\About.Designer.cs">
<DependentUpon>About.cs</DependentUpon>
</Compile>
<Compile Include="Forms\AddDownload.cs">
<SubType>Form</SubType>
</Compile>
Expand Down Expand Up @@ -160,8 +166,14 @@
<Compile Include="HttpTool\WebTool.cs" />
<Compile Include="Util\FileTool\HashTool.cs" />
<Compile Include="Util\FileTool\LogTool.cs" />
<Compile Include="Util\ListViewRel.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="Util\ShowCommands.cs" />
<Compile Include="Util\TaskState.cs" />
<EmbeddedResource Include="Forms\About.resx">
<DependentUpon>About.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Forms\AddDownload.resx">
<DependentUpon>AddDownload.cs</DependentUpon>
</EmbeddedResource>
Expand Down Expand Up @@ -209,6 +221,7 @@
</ItemGroup>
<ItemGroup>
<Content Include="20161006015142287_easyicon_net_64.ico" />
<Content Include="FodyWeavers.xml" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.0">
Expand All @@ -229,8 +242,16 @@
</ItemGroup>
<ItemGroup>
<Folder Include="HttpTool\Upload\" />
<Folder Include="Resources\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\Fody.1.28.3\build\Fody.targets" Condition="Exists('..\packages\Fody.1.28.3\build\Fody.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\Fody.1.28.3\build\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.1.28.3\build\Fody.targets'))" />
</Target>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
Expand Down
5 changes: 5 additions & 0 deletions BaiduPanDownload/FodyWeavers.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Weavers>
<Costura/>

</Weavers>
107 changes: 107 additions & 0 deletions BaiduPanDownload/Forms/About.Designer.cs

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

31 changes: 31 additions & 0 deletions BaiduPanDownload/Forms/About.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace BaiduPanDownload.Forms
{
public partial class About : Form
{
public About()
{
InitializeComponent();
}

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
try
{
System.Diagnostics.Process.Start("http://www.mrs4s.top/2016/10/06/%E3%80%90c%E5%B0%8F%E5%B7%A5%E5%85%B7%E3%80%91%E7%99%BE%E5%BA%A6%E7%BD%91%E7%9B%98%E4%B8%8D%E9%99%90%E9%80%9F%E4%B8%8B%E8%BD%BD%E5%B7%A5%E5%85%B7");
}
catch (Exception ex)
{
MessageBox.Show("调用浏览器失败! " + ex.Message);
}
}
}
}
Loading

0 comments on commit 213d504

Please sign in to comment.