86 Star 362 Fork 122

wxd_tony1984/DevelopAssistant

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
SQLProfesserAddIn.cs 1.17 KB
Copy Edit Raw Blame History
wxd_tony1984 authored 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/sqlorm/DevelopAssistant.git
git@gitee.com:sqlorm/DevelopAssistant.git
sqlorm
DevelopAssistant
DevelopAssistant
master

Search