1 Star 2 Fork 0

轮回/vivo-tools-3

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
AddApkForm.cs 1.58 KB
一键复制 编辑 原始数据 按行查看 历史
轮回 提交于 2022-04-27 10:19 . 更新3.0.0
using Sunny.UI;
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;
using Entites;
using vivo_tools_Libraries;
namespace vivo_tools_3
{
public partial class AddApkForm : UIForm
{
public AddApkForm()
{
InitializeComponent();
this.Text = "添加应用包";
}
private void ub_Cancel_Click(object sender, EventArgs e)
{
this.Close();
}
private void ub_save_Click(object sender, EventArgs e)
{
if (tb_apkname.Text == null || tb_apkname.Text == "")
{
ShowInfoDialog("提示", "应用名称不能为空!", Style);
}
else if (tb_apkpackage.Text == null || tb_apkpackage.Text == "")
{
ShowInfoDialog("提示", "应用包名不能为空!", Style);
}
else
{
V_apkname apk = new V_apkname(tb_apkname.Text, tb_apkpackage.Text);
int num = DataBase.AddPackages(apk);
if (num > 0)
{
ShowInfoDialog("提示", "添加成功!", Style);
setOK = 1;
this.Close();
}
else
{
ShowInfoDialog("提示", "添加失败!", Style);
}
}
}
public int setOK = 0;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/PeopleCarWorld/vivo-tools-3.git
[email protected]:PeopleCarWorld/vivo-tools-3.git
PeopleCarWorld
vivo-tools-3
vivo-tools-3
master

搜索帮助