1 Star 0 Fork 122

牛牛/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
JavaProjectAddIn.cs 1.31 KB
Copy Edit Raw Blame History
wxd_tony1984 authored 2019-07-22 18:11 +08:00 . 一些修改
using DevelopAssistant.AddIn.JavaProject.Properties;
using ICSharpCode.WinFormsUI.Controls;
using ICSharpCode.WinFormsUI.Docking;
using System;
using System.Windows.Forms;
namespace DevelopAssistant.AddIn.JavaProject
{
public class JavaProjectAddIn : WindowAddIn // DockContentAddIn
{
public JavaProjectAddIn()
{
this.IdentityID = "263dd53f-88c3-444b-b5db-4ed69b2681aa";
this.Name = "生成代码(Java)";
this.Text = "生成代码(Java)";
this.Tooltip = "生成代码(Java)";
this.Icon = Resources.plus_shield;
}
public override void Initialize(string AssemblyName, string Winname)
{
//
}
public override object Execute(params object[] Parameter)
{
NTreeNode node = ((NTreeNode)Parameter[3]).TreeView.SelectedNode;
MainForm f = new MainForm((DevelopAssistant.Core.MainForm)Parameter[0], this, node,
(DevelopAssistant.Service.DataBaseServer)Parameter[2],
Parameter[4].ToString(), Parameter[5].ToString())
{
//WindowFloat = new DelegateWindowFloatHandler(FloatParentCenter)
};
return f;
}
private void FloatParentCenter(Form form)
{
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/supertea/DevelopAssistant.git
git@gitee.com:supertea/DevelopAssistant.git
supertea
DevelopAssistant
DevelopAssistant
master

Search