1 Star 0 Fork 122

库卡青年/DevelopAssistant

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
SQLProfesserAddIn.cs 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
wxd_tony1984 提交于 2017-06-07 12:40 +08:00 . 一些修改
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using DevelopAssistant.AddIn.SQLProfesser.Properties;
using DevelopAssistant.AddIn;
using ICSharpCode.WinFormsUI.Forms;
using DevelopAssistant.Service;
namespace DevelopAssistant.AddIn.SQLProfesser
{
public class SQLProfesserAddIn : DockContentAddIn
{
public SQLProfesserAddIn()
{
this.IdentityID = "f6344f39-d10c-4c75-9863-ec5cbbb2a1ee";
this.Name = "数据维护专家";
this.Text = "数据维护专家";
this.Tooltip = "数据维护专家";
this.Icon = Resources.plugin;
}
public override void Initialize(string AssemblyName, string Winname)
{
//
}
public override object Execute(params object[] Parameter)
{
MainForm f = new MainForm((BaseForm)Parameter[0], (ICSharpCode.WinFormsUI.Docking.DockPanel)Parameter[1])
{
//WindowFloat = new DelegateWindowFloatHandler(FloatParentCenter)
};
return f;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/wwwpythonpw/DevelopAssistant.git
git@gitee.com:wwwpythonpw/DevelopAssistant.git
wwwpythonpw
DevelopAssistant
DevelopAssistant
master

搜索帮助