代码拉取完成,页面将自动刷新
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();
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。