Skip to content

Commit

Permalink
V1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ARMrAmzing committed Aug 5, 2022
1 parent e18ace8 commit abb4452
Show file tree
Hide file tree
Showing 14 changed files with 1,185 additions and 17 deletions.
6 changes: 6 additions & 0 deletions EasyToInstall.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>EasyToInstall.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down Expand Up @@ -80,5 +83,8 @@
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="EasyToInstall.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Binary file added EasyToInstall.ico
Binary file not shown.
42 changes: 31 additions & 11 deletions Form1.Designer.cs

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

15 changes: 15 additions & 0 deletions Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ private void 帮助HToolStripMenuItem_Click(object sender, EventArgs e)
label3.Visible = true;
label4.Visible = true;
label5.Visible = false;
label6.Visible = false;
textBox1.Visible = false;
}

Expand All @@ -76,6 +77,7 @@ private void 安装IToolStripMenuItem_Click(object sender, EventArgs e)
label3.Visible = false;
label4.Visible = false;
label5.Visible = false;
label6.Visible = false;
textBox1.Visible = false;
}

Expand All @@ -87,7 +89,20 @@ private void 高级SToolStripMenuItem_Click(object sender, EventArgs e)
label3.Visible = false;
label4.Visible = false;
label5.Visible = true;
label6.Visible = false;
textBox1.Visible = true;
}

private void 关于AToolStripMenuItem_Click(object sender, EventArgs e)
{
button1.Visible = false;
label1.Visible = false;
label2.Visible = false;
label3.Visible = false;
label4.Visible = false;
label5.Visible = false;
label6.Visible = true;
textBox1.Visible = false;
}
}
}
Loading

0 comments on commit abb4452

Please sign in to comment.