mirror of
https://github.com/zs-yg/kortapp-z.git
synced 2025-12-07 00:20:43 +08:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4b27d2e1dc | ||
|
|
0f578d56d4 | ||
|
|
d36a367147 | ||
|
|
2c8ce29b3d | ||
|
|
efe7d16f96 |
@@ -50,7 +50,7 @@ namespace AppStore
|
|||||||
|
|
||||||
// 初始化并添加应用信息
|
// 初始化并添加应用信息
|
||||||
infoLabel = new Label();
|
infoLabel = new Label();
|
||||||
infoLabel.Text = "kortapp-z\n版本: 1.0.0\n作者: zs-yg\n一个简单、开源的应用商店\nkortapp-z是完全免费\n基于.NET8和C++的软件";
|
infoLabel.Text = "kortapp-z\n版本: 1.0.1\n作者: zs-yg\n一个简单、开源的应用商店\nkortapp-z是完全免费\n基于.NET8和C++的软件";
|
||||||
infoLabel.Font = new Font("Microsoft YaHei", 12);
|
infoLabel.Font = new Font("Microsoft YaHei", 12);
|
||||||
infoLabel.AutoSize = false;
|
infoLabel.AutoSize = false;
|
||||||
infoLabel.Width = 300;
|
infoLabel.Width = 300;
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ namespace AppStore
|
|||||||
public string AppName { get; set; } = string.Empty;
|
public string AppName { get; set; } = string.Empty;
|
||||||
public Image AppIcon { get; set; } = SystemIcons.Application.ToBitmap();
|
public Image AppIcon { get; set; } = SystemIcons.Application.ToBitmap();
|
||||||
public string DownloadUrl { get; set; } = string.Empty;
|
public string DownloadUrl { get; set; } = string.Empty;
|
||||||
|
public bool ShowDownloadButton { get; set; } = true;
|
||||||
|
|
||||||
public AppCard()
|
public AppCard()
|
||||||
{
|
{
|
||||||
@@ -88,6 +89,7 @@ namespace AppStore
|
|||||||
|
|
||||||
downloadBtn.Click += DownloadBtn_Click;
|
downloadBtn.Click += DownloadBtn_Click;
|
||||||
this.Controls.Add(downloadBtn);
|
this.Controls.Add(downloadBtn);
|
||||||
|
downloadBtn.Visible = ShowDownloadButton;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -25,7 +25,10 @@
|
|||||||
<None Include="img\jpg\*.jpg">
|
<None Include="img\jpg\*.jpg">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</None>
|
</None>
|
||||||
<None Include="img\ico\icon.ico">
|
<None Include="img\resource\png\*.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</None>
|
||||||
|
<None Include="img\ico\*.ico">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</None>
|
</None>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|||||||
87
MainForm.cs
87
MainForm.cs
@@ -6,6 +6,7 @@ using System.IO;
|
|||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
using System.Diagnostics;
|
||||||
using AppStore;
|
using AppStore;
|
||||||
|
|
||||||
namespace AppStore
|
namespace AppStore
|
||||||
@@ -145,6 +146,9 @@ namespace AppStore
|
|||||||
buttonPanel.Height = 70;
|
buttonPanel.Height = 70;
|
||||||
buttonPanel.BackColor = Color.FromArgb(240, 240, 240);
|
buttonPanel.BackColor = Color.FromArgb(240, 240, 240);
|
||||||
buttonPanel.Padding = new Padding(10, 15, 10, 0);
|
buttonPanel.Padding = new Padding(10, 15, 10, 0);
|
||||||
|
buttonPanel.AutoScroll = true;
|
||||||
|
buttonPanel.AutoSize = true;
|
||||||
|
buttonPanel.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
||||||
|
|
||||||
// 导航按钮样式
|
// 导航按钮样式
|
||||||
Action<Button> styleButton = (Button btn) => {
|
Action<Button> styleButton = (Button btn) => {
|
||||||
@@ -212,6 +216,17 @@ namespace AppStore
|
|||||||
};
|
};
|
||||||
buttonPanel.Controls.Add(btnAbout);
|
buttonPanel.Controls.Add(btnAbout);
|
||||||
|
|
||||||
|
// 内置工具按钮
|
||||||
|
var btnTools = new Button();
|
||||||
|
btnTools.Text = "内置工具";
|
||||||
|
btnTools.Location = new Point(590, 0);
|
||||||
|
styleButton(btnTools);
|
||||||
|
btnTools.Click += (s, e) => {
|
||||||
|
Logger.Log("用户点击了'内置工具'按钮");
|
||||||
|
ShowToolsView();
|
||||||
|
};
|
||||||
|
buttonPanel.Controls.Add(btnTools);
|
||||||
|
|
||||||
// 现代化内容区域
|
// 现代化内容区域
|
||||||
contentPanel = new Panel();
|
contentPanel = new Panel();
|
||||||
contentPanel.Dock = DockStyle.Fill;
|
contentPanel.Dock = DockStyle.Fill;
|
||||||
@@ -243,6 +258,58 @@ namespace AppStore
|
|||||||
contentPanel.Controls.Add(settingsControl);
|
contentPanel.Controls.Add(settingsControl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void ShowToolsView()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
contentPanel.Controls.Clear();
|
||||||
|
|
||||||
|
var flowPanel = new FlowLayoutPanel();
|
||||||
|
flowPanel.Dock = DockStyle.Fill;
|
||||||
|
flowPanel.AutoScroll = true;
|
||||||
|
flowPanel.WrapContents = false;
|
||||||
|
flowPanel.FlowDirection = FlowDirection.LeftToRight;
|
||||||
|
contentPanel.Controls.Add(flowPanel);
|
||||||
|
|
||||||
|
// 系统清理卡片
|
||||||
|
var cleanerCard = new ToolCard();
|
||||||
|
cleanerCard.ToolName = "系统清理";
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
cleanerCard.ToolIcon = Image.FromFile("img/resource/png/system_cleaner.png");
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
cleanerCard.ToolIcon = SystemIcons.Shield.ToBitmap();
|
||||||
|
}
|
||||||
|
|
||||||
|
cleanerCard.UpdateDisplay();
|
||||||
|
cleanerCard.ToolCardClicked += (s, e) => {
|
||||||
|
try {
|
||||||
|
string toolPath = Path.Combine(Application.StartupPath, "resource", "system_cleaner.exe");
|
||||||
|
if (File.Exists(toolPath)) {
|
||||||
|
Process.Start(toolPath);
|
||||||
|
} else {
|
||||||
|
MessageBox.Show("系统清理工具未找到,请确保已正确安装", "错误",
|
||||||
|
MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
}
|
||||||
|
} catch (Exception ex) {
|
||||||
|
MessageBox.Show($"启动清理工具失败: {ex.Message}", "错误",
|
||||||
|
MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
flowPanel.Controls.Add(cleanerCard);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Logger.LogError("显示内置工具视图时出错", ex);
|
||||||
|
MessageBox.Show("加载内置工具时发生错误,请重试", "错误",
|
||||||
|
MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
ShowAppsView(); // 回退到默认视图
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void ShowAboutView()
|
private void ShowAboutView()
|
||||||
{
|
{
|
||||||
contentPanel.Controls.Clear();
|
contentPanel.Controls.Clear();
|
||||||
@@ -493,11 +560,31 @@ namespace AppStore
|
|||||||
"https://ghproxy.net/https://github.com/M2Team/NanaZip/releases/download/5.0.1263.0/NanaZip_5.0.1263.0_DebugSymbols.zip",
|
"https://ghproxy.net/https://github.com/M2Team/NanaZip/releases/download/5.0.1263.0/NanaZip_5.0.1263.0_DebugSymbols.zip",
|
||||||
"img/png/nanazip.png"));
|
"img/png/nanazip.png"));
|
||||||
|
|
||||||
|
flowPanel.Controls.Add(CreateAppCard(
|
||||||
|
"PCL2",
|
||||||
|
"https://ghproxy.net/https://github.com/zs-yg/package/releases/download/v0.9/Plain.Craft.Launcher.2.exe",
|
||||||
|
"img/jpg/pcl2.jpg"));
|
||||||
|
|
||||||
flowPanel.Controls.Add(CreateAppCard(
|
flowPanel.Controls.Add(CreateAppCard(
|
||||||
"GreenShot",
|
"GreenShot",
|
||||||
"https://objects.githubusercontent.com/github-production-release-asset-2e65be/36756917/239aedb0-7d29-11e7-9f9c-d36ec4466ade?X-Amz-Algorithm=AWS4-HMAC-SSHA256&X-Amz-Credential=releaseassetproduction%2F20250613%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250613T041723Z&X-Amz-Expires=300&X-Amz-Signature=be1ef88a68bbc7065af5111809d11de881022933b44f6d961eb6bd6e6b7e60a8&X-Amz-SignedHeaders=host&response-content-disposition=attachment%3B%20filename%3DGreenshot-INSTALLER-1.2.10.6-RELEASE.exe&response-content-type=application%2Foctet-stream",
|
"https://objects.githubusercontent.com/github-production-release-asset-2e65be/36756917/239aedb0-7d29-11e7-9f9c-d36ec4466ade?X-Amz-Algorithm=AWS4-HMAC-SSHA256&X-Amz-Credential=releaseassetproduction%2F20250613%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250613T041723Z&X-Amz-Expires=300&X-Amz-Signature=be1ef88a68bbc7065af5111809d11de881022933b44f6d961eb6bd6e6b7e60a8&X-Amz-SignedHeaders=host&response-content-disposition=attachment%3B%20filename%3DGreenshot-INSTALLER-1.2.10.6-RELEASE.exe&response-content-type=application%2Foctet-stream",
|
||||||
"img/png/greenshot-logo.png"));
|
"img/png/greenshot-logo.png"));
|
||||||
|
|
||||||
|
flowPanel.Controls.Add(CreateAppCard(
|
||||||
|
"DWMBlurGlass",
|
||||||
|
"https://ghproxy.net/https://github.com/Maplespe/DWMBlurGlass/releases/download/2.3.1r/DWMBlurGlass_2.3.1_x64.zip",
|
||||||
|
"img/png/DWMBlurGlass.png"));
|
||||||
|
|
||||||
|
flowPanel.Controls.Add(CreateAppCard(
|
||||||
|
"Umi-OCR",
|
||||||
|
"https://ghproxy.net/https://github.com/hiroi-sora/Umi-OCR/releases/download/v2.1.5/Umi-OCR_Paddle_v2.1.5.7z.exe",
|
||||||
|
"img/png/Umi-OCR.png"));
|
||||||
|
|
||||||
|
flowPanel.Controls.Add(CreateAppCard(
|
||||||
|
"frp",
|
||||||
|
"https://github.com/fatedier/frp/releases/download/v0.62.1/frp_0.62.1_windows_amd64.zip",
|
||||||
|
""));
|
||||||
|
|
||||||
flowPanel.Controls.Add(CreateAppCard(
|
flowPanel.Controls.Add(CreateAppCard(
|
||||||
"VLC Media Player",
|
"VLC Media Player",
|
||||||
"https://mirrors.ustc.edu.cn/videolan-ftp/vlc/3.0.21/win64/vlc-3.0.21-win64.exe",
|
"https://mirrors.ustc.edu.cn/videolan-ftp/vlc/3.0.21/win64/vlc-3.0.21-win64.exe",
|
||||||
|
|||||||
77
ToolCard.cs
Normal file
77
ToolCard.cs
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
using System;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
namespace AppStore
|
||||||
|
{
|
||||||
|
public class ToolCard : UserControl
|
||||||
|
{
|
||||||
|
private PictureBox iconBox = new PictureBox();
|
||||||
|
private Label nameLabel = new Label();
|
||||||
|
|
||||||
|
public string ToolName { get; set; } = string.Empty;
|
||||||
|
public Image ToolIcon { get; set; } = SystemIcons.Shield.ToBitmap();
|
||||||
|
|
||||||
|
// 自定义点击事件初始化为空委托
|
||||||
|
public event EventHandler ToolCardClicked = delegate {};
|
||||||
|
|
||||||
|
public ToolCard()
|
||||||
|
{
|
||||||
|
// 启用双缓冲
|
||||||
|
this.SetStyle(ControlStyles.OptimizedDoubleBuffer |
|
||||||
|
ControlStyles.ResizeRedraw, true);
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void InitializeComponent()
|
||||||
|
{
|
||||||
|
this.Size = new Size(240, 220);
|
||||||
|
this.BackColor = Color.White;
|
||||||
|
this.Padding = new Padding(5);
|
||||||
|
this.BorderStyle = BorderStyle.FixedSingle;
|
||||||
|
|
||||||
|
// 工具图标
|
||||||
|
iconBox = new PictureBox();
|
||||||
|
iconBox.Size = new Size(80, 80);
|
||||||
|
iconBox.Location = new Point((Width - 80) / 2, 15);
|
||||||
|
iconBox.SizeMode = PictureBoxSizeMode.StretchImage;
|
||||||
|
this.Controls.Add(iconBox);
|
||||||
|
|
||||||
|
// 工具名称
|
||||||
|
nameLabel = new Label();
|
||||||
|
nameLabel.AutoSize = false;
|
||||||
|
nameLabel.Size = new Size(Width - 20, 30);
|
||||||
|
nameLabel.Location = new Point(10, 100);
|
||||||
|
nameLabel.Font = new Font("Microsoft YaHei", 10, FontStyle.Bold);
|
||||||
|
nameLabel.TextAlign = ContentAlignment.MiddleCenter;
|
||||||
|
this.Controls.Add(nameLabel);
|
||||||
|
|
||||||
|
// 打开按钮
|
||||||
|
var openButton = new Button();
|
||||||
|
openButton.Text = "打开工具";
|
||||||
|
openButton.Size = new Size(100, 30);
|
||||||
|
openButton.Location = new Point((Width - 100) / 2, 140);
|
||||||
|
openButton.BackColor = Color.FromArgb(0, 120, 215);
|
||||||
|
openButton.ForeColor = Color.White;
|
||||||
|
openButton.FlatStyle = FlatStyle.Flat;
|
||||||
|
openButton.FlatAppearance.BorderSize = 0;
|
||||||
|
openButton.Cursor = Cursors.Hand;
|
||||||
|
// 按钮点击直接触发ToolCardClicked事件
|
||||||
|
openButton.Click += (s, e) => {
|
||||||
|
ToolCardClicked?.Invoke(this, e);
|
||||||
|
};
|
||||||
|
this.Controls.Add(openButton);
|
||||||
|
|
||||||
|
// 设置按钮悬停效果
|
||||||
|
openButton.BackColor = Color.FromArgb(0, 120, 215);
|
||||||
|
openButton.FlatAppearance.MouseOverBackColor = Color.FromArgb(0, 100, 180);
|
||||||
|
openButton.FlatAppearance.MouseDownBackColor = Color.FromArgb(0, 80, 160);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void UpdateDisplay()
|
||||||
|
{
|
||||||
|
nameLabel.Text = ToolName;
|
||||||
|
iconBox.Image = ToolIcon;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
img/png/DWMBlurGlass.png
Normal file
BIN
img/png/DWMBlurGlass.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 475 B |
BIN
img/png/Umi-OCR.png
Normal file
BIN
img/png/Umi-OCR.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 94 KiB |
BIN
img/resource/png/system_cleaner.png
Normal file
BIN
img/resource/png/system_cleaner.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 644 KiB |
BIN
resource/system_cleaner.exe
Normal file
BIN
resource/system_cleaner.exe
Normal file
Binary file not shown.
96
tools/system_cleaner.cpp
Normal file
96
tools/system_cleaner.cpp
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
#include <iostream>
|
||||||
|
#include <filesystem>
|
||||||
|
#include <chrono>
|
||||||
|
#include <vector>
|
||||||
|
#include <windows.h>
|
||||||
|
|
||||||
|
namespace fs = std::filesystem;
|
||||||
|
|
||||||
|
bool IsAdmin() {
|
||||||
|
BOOL isAdmin = FALSE;
|
||||||
|
SID_IDENTIFIER_AUTHORITY NtAuthority = SECURITY_NT_AUTHORITY;
|
||||||
|
PSID AdminGroup;
|
||||||
|
|
||||||
|
if (AllocateAndInitializeSid(&NtAuthority, 2,
|
||||||
|
SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_ADMINS,
|
||||||
|
0, 0, 0, 0, 0, 0, &AdminGroup)) {
|
||||||
|
if (!CheckTokenMembership(NULL, AdminGroup, &isAdmin)) {
|
||||||
|
isAdmin = FALSE;
|
||||||
|
}
|
||||||
|
FreeSid(AdminGroup);
|
||||||
|
}
|
||||||
|
return isAdmin == TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
void CleanDirectory(const fs::path& dir, size_t& deletedCount, size_t& errorCount) {
|
||||||
|
if (!fs::exists(dir)) {
|
||||||
|
std::cout << "目录不存在: " << dir << std::endl;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const auto& entry : fs::directory_iterator(dir)) {
|
||||||
|
try {
|
||||||
|
if (fs::is_regular_file(entry)) {
|
||||||
|
fs::remove(entry);
|
||||||
|
deletedCount++;
|
||||||
|
}
|
||||||
|
} catch (const std::exception& e) {
|
||||||
|
std::cerr << "删除文件失败: " << entry.path() << " - " << e.what() << std::endl;
|
||||||
|
errorCount++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
try {
|
||||||
|
if (!IsAdmin()) {
|
||||||
|
std::cerr << "请以管理员身份运行此程序以清理所有目录" << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto start = std::chrono::high_resolution_clock::now();
|
||||||
|
size_t totalDeleted = 0;
|
||||||
|
size_t totalErrors = 0;
|
||||||
|
|
||||||
|
// 定义要清理的目录列表
|
||||||
|
std::vector<fs::path> directories = {
|
||||||
|
"C:\\Windows\\Temp",
|
||||||
|
fs::path(std::getenv("USERPROFILE")) / "AppData" / "Local" / "Temp",
|
||||||
|
"C:\\Windows\\SoftwareDistribution\\Download",
|
||||||
|
"C:\\Windows\\Logs",
|
||||||
|
"C:\\Windows\\Minidump"
|
||||||
|
};
|
||||||
|
|
||||||
|
// 只有管理员才能清理Prefetch目录
|
||||||
|
if (IsAdmin()) {
|
||||||
|
directories.push_back("C:\\Windows\\Prefetch");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 清理每个目录
|
||||||
|
for (const auto& dir : directories) {
|
||||||
|
size_t dirDeleted = 0;
|
||||||
|
size_t dirErrors = 0;
|
||||||
|
|
||||||
|
std::cout << "正在清理: " << dir << std::endl;
|
||||||
|
CleanDirectory(dir, dirDeleted, dirErrors);
|
||||||
|
|
||||||
|
totalDeleted += dirDeleted;
|
||||||
|
totalErrors += dirErrors;
|
||||||
|
|
||||||
|
std::cout << "已删除 " << dirDeleted << " 个文件" << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto end = std::chrono::high_resolution_clock::now();
|
||||||
|
auto duration = std::chrono::duration_cast<std::chrono::milliseconds>(end - start);
|
||||||
|
|
||||||
|
std::cout << "\n清理完成:" << std::endl;
|
||||||
|
std::cout << "总共删除文件数: " << totalDeleted << std::endl;
|
||||||
|
std::cout << "总共错误数: " << totalErrors << std::endl;
|
||||||
|
std::cout << "耗时: " << duration.count() << " 毫秒" << std::endl;
|
||||||
|
|
||||||
|
} catch (const std::exception& e) {
|
||||||
|
std::cerr << "发生错误: " << e.what() << std::endl;
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user