Explore Enterprise Education Gitee Premium Gitee AI AI teammates
Fetch the repository succeeded.
forked from 车江毅/NScript
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
Already have an account? Sign in
文件
master
Branches (1)
master
master
Branches (1)
master
Clone or Download
Clone/Download
Prompt
To download the code, please copy the following command and execute it in the terminal
To ensure that your submitted code identity is correctly recognized by Gitee, please execute the following command.
When using the SSH protocol for the first time to clone or push code, follow the prompts below to complete the SSH configuration.
1 Generate RSA keys.
2 Obtain the content of the RSA public key and configure it in SSH Public Keys
To use SVN on Gitee, please visit the usage guide
When using the HTTPS protocol, the command line will prompt for account and password verification as follows. For security reasons, Gitee recommends configure and use personal access tokens instead of login passwords for cloning, pushing, and other operations.
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # Private Token
master
Branches (1)
master
NScript
/
FrCodeEdit.Designer.cs
NScript
/
FrCodeEdit.Designer.cs
FrCodeEdit.Designer.cs 15.16 KB
Copy Edit Raw Blame History
车江毅 authored 2016年06月24日 10:21 +08:00 . add project
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
namespace BSF.BaseService.NScript
{
partial class FrCodeEdit
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrCodeEdit));
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.btnOpen = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.btnSave = new System.Windows.Forms.ToolStripButton();
this.lbInfo = new System.Windows.Forms.ToolStripLabel();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.btnCompiler = new System.Windows.Forms.ToolStripButton();
this.btnDebug = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.btnTemplates = new System.Windows.Forms.ToolStripDropDownButton();
this.btnTemplate1 = new System.Windows.Forms.ToolStripMenuItem();
this.btnHelp = new System.Windows.Forms.ToolStripDropDownButton();
this.btnAuthor = new System.Windows.Forms.ToolStripMenuItem();
this.panel1 = new System.Windows.Forms.Panel();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.rtbCode = new ICSharpCode.TextEditor.TextEditorControl();
this.lbFileList = new System.Windows.Forms.ListBox();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.btnAssemblyDll = new System.Windows.Forms.ToolStripButton();
this.btnExeHelp = new System.Windows.Forms.ToolStripMenuItem();
this.toolStrip1.SuspendLayout();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.BackColor = System.Drawing.SystemColors.ControlDark;
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.btnOpen,
this.toolStripSeparator1,
this.btnSave,
this.lbInfo,
this.toolStripSeparator2,
this.btnCompiler,
this.btnDebug,
this.toolStripSeparator3,
this.btnAssemblyDll,
this.btnTemplates,
this.toolStripSeparator4,
this.btnHelp});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(682, 25);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// btnOpen
//
this.btnOpen.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.btnOpen.Image = ((System.Drawing.Image)(resources.GetObject("btnOpen.Image")));
this.btnOpen.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnOpen.Name = "btnOpen";
this.btnOpen.Size = new System.Drawing.Size(36, 22);
this.btnOpen.Text = "打开";
this.btnOpen.ToolTipText = "打开Main主文件";
this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
//
// btnSave
//
this.btnSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
this.btnSave.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(36, 22);
this.btnSave.Text = "保存";
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// lbInfo
//
this.lbInfo.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.lbInfo.ForeColor = System.Drawing.Color.Green;
this.lbInfo.Name = "lbInfo";
this.lbInfo.Size = new System.Drawing.Size(150, 22);
this.lbInfo.Text = ".Net脚本编辑器 by 车江毅";
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
//
// btnCompiler
//
this.btnCompiler.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.btnCompiler.Image = ((System.Drawing.Image)(resources.GetObject("btnCompiler.Image")));
this.btnCompiler.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnCompiler.Name = "btnCompiler";
this.btnCompiler.Size = new System.Drawing.Size(36, 22);
this.btnCompiler.Text = "编译";
this.btnCompiler.Click += new System.EventHandler(this.btnCompiler_Click);
//
// btnDebug
//
this.btnDebug.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.btnDebug.Image = ((System.Drawing.Image)(resources.GetObject("btnDebug.Image")));
this.btnDebug.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnDebug.Name = "btnDebug";
this.btnDebug.Size = new System.Drawing.Size(36, 22);
this.btnDebug.Text = "调试";
this.btnDebug.Click += new System.EventHandler(this.btnDebug_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
//
// btnTemplates
//
this.btnTemplates.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.btnTemplates.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.btnTemplate1});
this.btnTemplates.Image = ((System.Drawing.Image)(resources.GetObject("btnTemplates.Image")));
this.btnTemplates.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnTemplates.Name = "btnTemplates";
this.btnTemplates.Size = new System.Drawing.Size(45, 22);
this.btnTemplates.Text = "模板";
//
// btnTemplate1
//
this.btnTemplate1.Name = "btnTemplate1";
this.btnTemplate1.Size = new System.Drawing.Size(152, 22);
this.btnTemplate1.Text = "模板1";
this.btnTemplate1.Click += new System.EventHandler(this.btnTemplate1_Click);
//
// btnHelp
//
this.btnHelp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.btnHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.btnAuthor,
this.btnExeHelp});
this.btnHelp.Image = ((System.Drawing.Image)(resources.GetObject("btnHelp.Image")));
this.btnHelp.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnHelp.Name = "btnHelp";
this.btnHelp.Size = new System.Drawing.Size(45, 22);
this.btnHelp.Text = "帮助";
//
// btnAuthor
//
this.btnAuthor.Name = "btnAuthor";
this.btnAuthor.Size = new System.Drawing.Size(152, 22);
this.btnAuthor.Text = "作者";
this.btnAuthor.Click += new System.EventHandler(this.btnAuthor_Click);
//
// panel1
//
this.panel1.BackColor = System.Drawing.SystemColors.ActiveCaption;
this.panel1.Controls.Add(this.splitContainer1);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 25);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(682, 481);
this.panel1.TabIndex = 1;
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.rtbCode);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.lbFileList);
this.splitContainer1.Size = new System.Drawing.Size(682, 481);
this.splitContainer1.SplitterDistance = 550;
this.splitContainer1.TabIndex = 0;
//
// rtbCode
//
this.rtbCode.Dock = System.Windows.Forms.DockStyle.Fill;
this.rtbCode.IsReadOnly = false;
this.rtbCode.Location = new System.Drawing.Point(0, 0);
this.rtbCode.Name = "rtbCode";
this.rtbCode.Size = new System.Drawing.Size(550, 481);
this.rtbCode.TabIndex = 0;
//
// lbFileList
//
this.lbFileList.Dock = System.Windows.Forms.DockStyle.Fill;
this.lbFileList.FormattingEnabled = true;
this.lbFileList.ItemHeight = 12;
this.lbFileList.Location = new System.Drawing.Point(0, 0);
this.lbFileList.Name = "lbFileList";
this.lbFileList.Size = new System.Drawing.Size(128, 481);
this.lbFileList.TabIndex = 0;
this.lbFileList.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lbFileList_MouseDoubleClick);
this.lbFileList.MouseHover += new System.EventHandler(this.lbFileList_MouseHover);
this.lbFileList.MouseMove += new System.Windows.Forms.MouseEventHandler(this.lbFileList_MouseMove);
//
// toolTip1
//
this.toolTip1.AutoPopDelay = 3000;
this.toolTip1.InitialDelay = 3000;
this.toolTip1.IsBalloon = true;
this.toolTip1.ReshowDelay = 3000;
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
//
// btnAssemblyDll
//
this.btnAssemblyDll.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.btnAssemblyDll.Image = ((System.Drawing.Image)(resources.GetObject("btnAssemblyDll.Image")));
this.btnAssemblyDll.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnAssemblyDll.Name = "btnAssemblyDll";
this.btnAssemblyDll.Size = new System.Drawing.Size(36, 22);
this.btnAssemblyDll.Text = "引用";
this.btnAssemblyDll.ToolTipText = "需要引用的dll的情况";
this.btnAssemblyDll.Click += new System.EventHandler(this.btnAssemblyDll_Click);
//
// btnExeHelp
//
this.btnExeHelp.Name = "btnExeHelp";
this.btnExeHelp.Size = new System.Drawing.Size(152, 22);
this.btnExeHelp.Text = "说明";
this.btnExeHelp.Click += new System.EventHandler(this.btnExeHelp_Click);
//
// FrCodeEdit
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(682, 506);
this.Controls.Add(this.panel1);
this.Controls.Add(this.toolStrip1);
this.Name = "FrCodeEdit";
this.Text = "NScript Editor (.Net 脚本编辑器)";
this.Load += new System.EventHandler(this.FrCodeEdit_Load);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.panel1.ResumeLayout(false);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripButton btnOpen;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.ListBox lbFileList;
private System.Windows.Forms.ToolStripButton btnSave;
private System.Windows.Forms.ToolStripLabel lbInfo;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripButton btnDebug;
private System.Windows.Forms.ToolStripButton btnCompiler;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripDropDownButton btnTemplates;
private System.Windows.Forms.ToolStripMenuItem btnTemplate1;
private ICSharpCode.TextEditor.TextEditorControl rtbCode;
private System.Windows.Forms.ToolStripDropDownButton btnHelp;
private System.Windows.Forms.ToolStripMenuItem btnAuthor;
private System.Windows.Forms.ToolStripButton btnAssemblyDll;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
private System.Windows.Forms.ToolStripMenuItem btnExeHelp;
}
}
Loading...
Report
Report success
We will send you the feedback within 2 working days through the letter!
Please fill in the reason for the report carefully. Provide as detailed a description as possible.
Please select a report type
Cancel
Send
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

About

.net 动态脚本引擎, 解决.net环境windows系统下类似java中Grovvy的功能和方向。 在互联网项目可以用来做动态营销活动(营销业务解耦和剥离),规则引擎,流程引擎,windows运维脚本,源码式插件开发。
Cancel

Releases

No release

Contributors

All

Activities

can not load any more
Edit
About
Homepage
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/systemweb/NScript.git
git@gitee.com:systemweb/NScript.git
systemweb
NScript
NScript
master
Going to Help Center

Search

Comment
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register

AltStyle によって変換されたページ (->オリジナル) /