1 Star 0 Fork 0

罗锡锡/NeteaseMusicDownload

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TipForm.cs 1.54 KB
一键复制 编辑 原始数据 按行查看 历史
N9st 提交于 2023-04-16 21:08 . 添加登录、搜索、下载功能
using System;
using System.Drawing;
using System.IO;
using System.Threading.Tasks;
using NeteaseMusicDownloadWinForm.Utility;
using Sunny.UI;
namespace NeteaseMusicDownloadWinForm
{
public partial class TipForm : UIForm
{
//退出登录委托
public delegate Task ExitLogin();
//退出登录事件
public event ExitLogin ExitLoginEvent;
public TipForm(string tipText)
{
InitializeComponent();
uiLabel1.Text = tipText;
//根据tipText来决定TipForm的按钮样式
if (!tipText.Contains("退出"))
{
uiButton2.Hide();
uiButton1.Size = new Size(386, 52);
}
}
//关闭提示框
private void CloseButton_Click(object sender, EventArgs e)
{
this.Close();
}
//关闭提示框
private void UiButton2_Click(object sender, EventArgs e)
{
this.Close();
}
//删除cookie文件,懒,这是一个虚假的退出登录,或者单纯点击确定关闭窗口
private async void UiButton1_Click(object sender, EventArgs e)
{
if (uiLabel1.Text.Contains("退出"))
{
//删除cookie文件
File.Delete(Login.ConfigPath);
//指向改为null
Http.Cookie = null;
//执行委托事件,反馈给主窗口
await ExitLoginEvent();
}
this.Close();
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/luo-xixi-ai/NeteaseMusicDownload.git
git@gitee.com:luo-xixi-ai/NeteaseMusicDownload.git
luo-xixi-ai
NeteaseMusicDownload
NeteaseMusicDownload
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385