2 Star 10 Fork 7

Ken He/Excel-AddIn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Form7.Designer.cs 8.25 KB
一键复制 编辑 原始数据 按行查看 历史
Ken He 提交于 2025-02-18 16:59 +08:00 . 完善deepseek聊天功能
namespace ExcelAddIn
{
partial class Form7
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form7));
this.richTextBoxInput = new System.Windows.Forms.RichTextBox();
this.prompt_label = new System.Windows.Forms.Label();
this.flowLayoutPanelChat = new System.Windows.Forms.FlowLayoutPanel();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.settingsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.label1 = new System.Windows.Forms.Label();
this.send_button = new System.Windows.Forms.Button();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// richTextBoxInput
//
this.richTextBoxInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.richTextBoxInput.BackColor = System.Drawing.SystemColors.Control;
this.richTextBoxInput.ForeColor = System.Drawing.SystemColors.WindowText;
this.richTextBoxInput.Location = new System.Drawing.Point(151, 332);
this.richTextBoxInput.Name = "richTextBoxInput";
this.richTextBoxInput.Size = new System.Drawing.Size(517, 89);
this.richTextBoxInput.TabIndex = 4;
this.richTextBoxInput.Text = "";
this.richTextBoxInput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.richTextBoxInput_KeyDown);
//
// prompt_label
//
this.prompt_label.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.prompt_label.AutoSize = true;
this.prompt_label.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.prompt_label.ForeColor = System.Drawing.Color.SaddleBrown;
this.prompt_label.Location = new System.Drawing.Point(71, 428);
this.prompt_label.Name = "prompt_label";
this.prompt_label.Size = new System.Drawing.Size(0, 17);
this.prompt_label.TabIndex = 5;
//
// flowLayoutPanelChat
//
this.flowLayoutPanelChat.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.flowLayoutPanelChat.Location = new System.Drawing.Point(151, 36);
this.flowLayoutPanelChat.Name = "flowLayoutPanelChat";
this.flowLayoutPanelChat.Size = new System.Drawing.Size(517, 279);
this.flowLayoutPanelChat.TabIndex = 6;
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.settingsMenuItem,
this.exitMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(800, 25);
this.menuStrip1.TabIndex = 7;
this.menuStrip1.Text = "menuStrip1";
//
// settingsMenuItem
//
this.settingsMenuItem.Name = "settingsMenuItem";
this.settingsMenuItem.Size = new System.Drawing.Size(44, 21);
this.settingsMenuItem.Text = "设置";
this.settingsMenuItem.Click += new System.EventHandler(this.settingsMenuItem_Click);
//
// exitMenuItem
//
this.exitMenuItem.Name = "exitMenuItem";
this.exitMenuItem.Size = new System.Drawing.Size(44, 21);
this.exitMenuItem.Text = "退出";
this.exitMenuItem.Click += new System.EventHandler(this.exitMenuItem_Click);
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.ForeColor = System.Drawing.Color.DarkSlateBlue;
this.label1.Location = new System.Drawing.Point(66, 332);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(79, 20);
this.label1.TabIndex = 8;
this.label1.Text = "文字输入:";
//
// send_button
//
this.send_button.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.send_button.BackgroundImage = global::ExcelAddIn.Properties.Resources.send;
this.send_button.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.send_button.Location = new System.Drawing.Point(674, 394);
this.send_button.Name = "send_button";
this.send_button.Size = new System.Drawing.Size(27, 27);
this.send_button.TabIndex = 2;
this.send_button.UseVisualStyleBackColor = true;
this.send_button.Click += new System.EventHandler(this.send_button_Click);
//
// Form7
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.label1);
this.Controls.Add(this.flowLayoutPanelChat);
this.Controls.Add(this.prompt_label);
this.Controls.Add(this.richTextBoxInput);
this.Controls.Add(this.send_button);
this.Controls.Add(this.menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.Name = "Form7";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "DeepSeek对话框";
this.Load += new System.EventHandler(this.Form7_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button send_button;
private System.Windows.Forms.RichTextBox richTextBoxInput;
private System.Windows.Forms.Label prompt_label;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanelChat;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem settingsMenuItem;
private System.Windows.Forms.ToolStripMenuItem exitMenuItem;
private System.Windows.Forms.Label label1;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/aken721/excel-addin.git
git@gitee.com:aken721/excel-addin.git
aken721
excel-addin
Excel-AddIn
master

搜索帮助

371d5123 14472233 46e8bd33 14472233