Merge pull request #335 from gnh1201/dev
Some checks failed
CodeQL / Analyze (javascript) (push) Has been cancelled
Deploy Jekyll with GitHub Pages dependencies preinstalled / build (push) Has been cancelled
Deploy Jekyll with GitHub Pages dependencies preinstalled / deploy (push) Has been cancelled

Add editor and community buttons with icons to MainForm
This commit is contained in:
Namhyeon Go 2025-10-10 13:52:18 +09:00 committed by GitHub
commit 065f59eb4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 117 additions and 39 deletions

View File

@ -125,7 +125,7 @@
this.btnOpenFile.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.btnOpenFile.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnOpenFile.Location = new System.Drawing.Point(31, 169); this.btnOpenFile.Location = new System.Drawing.Point(31, 169);
this.btnOpenFile.Name = "btnOpenFile"; this.btnOpenFile.Name = "btnOpenFile";
this.btnOpenFile.Padding = new System.Windows.Forms.Padding(11, 0, 0, 0); this.btnOpenFile.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
this.btnOpenFile.Size = new System.Drawing.Size(201, 40); this.btnOpenFile.Size = new System.Drawing.Size(201, 40);
this.btnOpenFile.TabIndex = 5; this.btnOpenFile.TabIndex = 5;
this.btnOpenFile.Text = "Open the file..."; this.btnOpenFile.Text = "Open the file...";
@ -140,7 +140,7 @@
this.btnOpenDirectory.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.btnOpenDirectory.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnOpenDirectory.Location = new System.Drawing.Point(31, 123); this.btnOpenDirectory.Location = new System.Drawing.Point(31, 123);
this.btnOpenDirectory.Name = "btnOpenDirectory"; this.btnOpenDirectory.Name = "btnOpenDirectory";
this.btnOpenDirectory.Padding = new System.Windows.Forms.Padding(11, 0, 0, 0); this.btnOpenDirectory.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
this.btnOpenDirectory.Size = new System.Drawing.Size(201, 40); this.btnOpenDirectory.Size = new System.Drawing.Size(201, 40);
this.btnOpenDirectory.TabIndex = 4; this.btnOpenDirectory.TabIndex = 4;
this.btnOpenDirectory.Text = "Open the directory..."; this.btnOpenDirectory.Text = "Open the directory...";
@ -198,7 +198,7 @@
this.btnExport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.btnExport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnExport.Location = new System.Drawing.Point(213, 29); this.btnExport.Location = new System.Drawing.Point(213, 29);
this.btnExport.Name = "btnExport"; this.btnExport.Name = "btnExport";
this.btnExport.Padding = new System.Windows.Forms.Padding(11, 0, 0, 0); this.btnExport.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
this.btnExport.Size = new System.Drawing.Size(176, 40); this.btnExport.Size = new System.Drawing.Size(176, 40);
this.btnExport.TabIndex = 6; this.btnExport.TabIndex = 6;
this.btnExport.Text = "Export"; this.btnExport.Text = "Export";
@ -211,7 +211,7 @@
this.btnImport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.btnImport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnImport.Location = new System.Drawing.Point(31, 29); this.btnImport.Location = new System.Drawing.Point(31, 29);
this.btnImport.Name = "btnImport"; this.btnImport.Name = "btnImport";
this.btnImport.Padding = new System.Windows.Forms.Padding(11, 0, 0, 0); this.btnImport.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
this.btnImport.Size = new System.Drawing.Size(176, 40); this.btnImport.Size = new System.Drawing.Size(176, 40);
this.btnImport.TabIndex = 5; this.btnImport.TabIndex = 5;
this.btnImport.Text = "Import"; this.btnImport.Text = "Import";

View File

@ -32,7 +32,6 @@
this.btnRunFromZipFile = new System.Windows.Forms.Button(); this.btnRunFromZipFile = new System.Windows.Forms.Button();
this.btnRunFromExternalLink = new System.Windows.Forms.Button(); this.btnRunFromExternalLink = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.cbUseSpecificScript = new System.Windows.Forms.CheckBox(); this.cbUseSpecificScript = new System.Windows.Forms.CheckBox();
this.txtUseSpecificScript = new System.Windows.Forms.TextBox(); this.txtUseSpecificScript = new System.Windows.Forms.TextBox();
this.cbInteractiveServiceApp = new System.Windows.Forms.CheckBox(); this.cbInteractiveServiceApp = new System.Windows.Forms.CheckBox();
@ -42,13 +41,16 @@
this.instancesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.instancesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.runAsAdministratorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.runAsAdministratorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.globalSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.globalSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.startCodeEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.startTheEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openCopilotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openCopilotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components); this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.openLauncherToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openLauncherToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openCodeEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openCodeEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.btnStartTheEditor = new System.Windows.Forms.Button();
this.btnJoinTheCommunity = new System.Windows.Forms.Button();
this.menuStrip1.SuspendLayout(); this.menuStrip1.SuspendLayout();
this.contextMenuStrip1.SuspendLayout(); this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout(); this.SuspendLayout();
@ -60,7 +62,7 @@
this.btnRunFromZipFile.Name = "btnRunFromZipFile"; this.btnRunFromZipFile.Name = "btnRunFromZipFile";
this.btnRunFromZipFile.Size = new System.Drawing.Size(200, 200); this.btnRunFromZipFile.Size = new System.Drawing.Size(200, 200);
this.btnRunFromZipFile.TabIndex = 0; this.btnRunFromZipFile.TabIndex = 0;
this.btnRunFromZipFile.Text = "From ZIP file..."; this.btnRunFromZipFile.Text = "From a package file...";
this.btnRunFromZipFile.TextAlign = System.Drawing.ContentAlignment.BottomCenter; this.btnRunFromZipFile.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
this.btnRunFromZipFile.UseVisualStyleBackColor = true; this.btnRunFromZipFile.UseVisualStyleBackColor = true;
this.btnRunFromZipFile.Click += new System.EventHandler(this.btnRunFromZipFile_Click); this.btnRunFromZipFile.Click += new System.EventHandler(this.btnRunFromZipFile_Click);
@ -72,7 +74,7 @@
this.btnRunFromExternalLink.Name = "btnRunFromExternalLink"; this.btnRunFromExternalLink.Name = "btnRunFromExternalLink";
this.btnRunFromExternalLink.Size = new System.Drawing.Size(200, 200); this.btnRunFromExternalLink.Size = new System.Drawing.Size(200, 200);
this.btnRunFromExternalLink.TabIndex = 1; this.btnRunFromExternalLink.TabIndex = 1;
this.btnRunFromExternalLink.Text = "From external link..."; this.btnRunFromExternalLink.Text = "From an external source...";
this.btnRunFromExternalLink.TextAlign = System.Drawing.ContentAlignment.BottomCenter; this.btnRunFromExternalLink.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
this.btnRunFromExternalLink.UseVisualStyleBackColor = true; this.btnRunFromExternalLink.UseVisualStyleBackColor = true;
this.btnRunFromExternalLink.Click += new System.EventHandler(this.btnRunFromExternalLink_Click); this.btnRunFromExternalLink.Click += new System.EventHandler(this.btnRunFromExternalLink_Click);
@ -86,17 +88,6 @@
this.label1.TabIndex = 2; this.label1.TabIndex = 2;
this.label1.Text = "Choose the location of WelsonJS application package."; this.label1.Text = "Choose the location of WelsonJS application package.";
// //
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(24, 345);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(327, 12);
this.linkLabel1.TabIndex = 3;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "WelsonJS is open-source software. Join our community!";
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// cbUseSpecificScript // cbUseSpecificScript
// //
this.cbUseSpecificScript.AutoSize = true; this.cbUseSpecificScript.AutoSize = true;
@ -143,7 +134,7 @@
this.instancesToolStripMenuItem, this.instancesToolStripMenuItem,
this.runAsAdministratorToolStripMenuItem, this.runAsAdministratorToolStripMenuItem,
this.globalSettingsToolStripMenuItem, this.globalSettingsToolStripMenuItem,
this.startCodeEditorToolStripMenuItem, this.startTheEditorToolStripMenuItem,
this.openCopilotToolStripMenuItem}); this.openCopilotToolStripMenuItem});
this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem"; this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
this.settingsToolStripMenuItem.Size = new System.Drawing.Size(62, 20); this.settingsToolStripMenuItem.Size = new System.Drawing.Size(62, 20);
@ -177,12 +168,12 @@
this.globalSettingsToolStripMenuItem.Text = "Global settings..."; this.globalSettingsToolStripMenuItem.Text = "Global settings...";
this.globalSettingsToolStripMenuItem.Click += new System.EventHandler(this.globalSettingsToolStripMenuItem_Click); this.globalSettingsToolStripMenuItem.Click += new System.EventHandler(this.globalSettingsToolStripMenuItem_Click);
// //
// startCodeEditorToolStripMenuItem // startTheEditorToolStripMenuItem
// //
this.startCodeEditorToolStripMenuItem.Name = "startCodeEditorToolStripMenuItem"; this.startTheEditorToolStripMenuItem.Name = "startTheEditorToolStripMenuItem";
this.startCodeEditorToolStripMenuItem.Size = new System.Drawing.Size(196, 22); this.startTheEditorToolStripMenuItem.Size = new System.Drawing.Size(196, 22);
this.startCodeEditorToolStripMenuItem.Text = "Start the code editor..."; this.startTheEditorToolStripMenuItem.Text = "Start the editor...";
this.startCodeEditorToolStripMenuItem.Click += new System.EventHandler(this.startCodeEditorToolStripMenuItem_Click); this.startTheEditorToolStripMenuItem.Click += new System.EventHandler(this.startCodeEditorToolStripMenuItem_Click);
// //
// openCopilotToolStripMenuItem // openCopilotToolStripMenuItem
// //
@ -225,15 +216,42 @@
this.exitToolStripMenuItem.Size = new System.Drawing.Size(198, 22); this.exitToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
this.exitToolStripMenuItem.Text = "Exit"; this.exitToolStripMenuItem.Text = "Exit";
// //
// btnStartTheEditor
//
this.btnStartTheEditor.Image = global::WelsonJS.Launcher.Properties.Resources.icon_editor_32;
this.btnStartTheEditor.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnStartTheEditor.Location = new System.Drawing.Point(25, 344);
this.btnStartTheEditor.Name = "btnStartTheEditor";
this.btnStartTheEditor.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
this.btnStartTheEditor.Size = new System.Drawing.Size(200, 40);
this.btnStartTheEditor.TabIndex = 8;
this.btnStartTheEditor.Text = "Start the editor...";
this.btnStartTheEditor.UseVisualStyleBackColor = true;
this.btnStartTheEditor.Click += new System.EventHandler(this.btnStartTheEditor_Click);
//
// btnJoinTheCommunity
//
this.btnJoinTheCommunity.Image = global::WelsonJS.Launcher.Properties.Resources.icon_community_32;
this.btnJoinTheCommunity.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnJoinTheCommunity.Location = new System.Drawing.Point(230, 344);
this.btnJoinTheCommunity.Name = "btnJoinTheCommunity";
this.btnJoinTheCommunity.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
this.btnJoinTheCommunity.Size = new System.Drawing.Size(200, 40);
this.btnJoinTheCommunity.TabIndex = 9;
this.btnJoinTheCommunity.Text = "Join the community";
this.btnJoinTheCommunity.UseVisualStyleBackColor = true;
this.btnJoinTheCommunity.Click += new System.EventHandler(this.btnJoinTheCommunity_Click);
//
// MainForm // MainForm
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(461, 382); this.ClientSize = new System.Drawing.Size(461, 404);
this.Controls.Add(this.btnJoinTheCommunity);
this.Controls.Add(this.btnStartTheEditor);
this.Controls.Add(this.cbInteractiveServiceApp); this.Controls.Add(this.cbInteractiveServiceApp);
this.Controls.Add(this.txtUseSpecificScript); this.Controls.Add(this.txtUseSpecificScript);
this.Controls.Add(this.cbUseSpecificScript); this.Controls.Add(this.cbUseSpecificScript);
this.Controls.Add(this.linkLabel1);
this.Controls.Add(this.label1); this.Controls.Add(this.label1);
this.Controls.Add(this.btnRunFromExternalLink); this.Controls.Add(this.btnRunFromExternalLink);
this.Controls.Add(this.btnRunFromZipFile); this.Controls.Add(this.btnRunFromZipFile);
@ -257,7 +275,6 @@
private System.Windows.Forms.Button btnRunFromZipFile; private System.Windows.Forms.Button btnRunFromZipFile;
private System.Windows.Forms.Button btnRunFromExternalLink; private System.Windows.Forms.Button btnRunFromExternalLink;
private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label1;
private System.Windows.Forms.LinkLabel linkLabel1;
private System.Windows.Forms.CheckBox cbUseSpecificScript; private System.Windows.Forms.CheckBox cbUseSpecificScript;
private System.Windows.Forms.TextBox txtUseSpecificScript; private System.Windows.Forms.TextBox txtUseSpecificScript;
private System.Windows.Forms.CheckBox cbInteractiveServiceApp; private System.Windows.Forms.CheckBox cbInteractiveServiceApp;
@ -267,13 +284,16 @@
private System.Windows.Forms.ToolStripMenuItem instancesToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem instancesToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem runAsAdministratorToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem runAsAdministratorToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem globalSettingsToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem globalSettingsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem startCodeEditorToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem startTheEditorToolStripMenuItem;
private System.Windows.Forms.NotifyIcon notifyIcon1; private System.Windows.Forms.NotifyIcon notifyIcon1;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1; private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem openCodeEditorToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem openCodeEditorToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem openLauncherToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem openLauncherToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem openCopilotToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem openCopilotToolStripMenuItem;
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
private System.Windows.Forms.Button btnStartTheEditor;
private System.Windows.Forms.Button btnJoinTheCommunity;
} }
} }

View File

@ -186,7 +186,10 @@ namespace WelsonJS.Launcher
if (!Program._resourceServer.IsRunning()) if (!Program._resourceServer.IsRunning())
{ {
Program._resourceServer.Start(false); Program._resourceServer.Start(false);
startCodeEditorToolStripMenuItem.Text = "Open the code editor...";
string text = "Open the editor...";
startTheEditorToolStripMenuItem.Text = text;
btnStartTheEditor.Text = text;
} }
return Program._resourceServer.IsRunning(); return Program._resourceServer.IsRunning();
@ -240,16 +243,29 @@ namespace WelsonJS.Launcher
} }
} }
private void LaunchEditor()
{
if (RunResourceServer())
{
Program.OpenWebBrowser(Program._resourceServer.GetPrefix());
}
else
{
_logger.Error("Failed to start the resource server.");
MessageBox.Show(
"Failed to start the resource server. Please check your configuration or try again.",
"Resource Server Error",
MessageBoxButtons.OK,
MessageBoxIcon.Error
);
}
}
private void cbUseSpecificScript_CheckedChanged(object sender, EventArgs e) private void cbUseSpecificScript_CheckedChanged(object sender, EventArgs e)
{ {
txtUseSpecificScript.Enabled = cbUseSpecificScript.Checked; txtUseSpecificScript.Enabled = cbUseSpecificScript.Checked;
} }
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Program.OpenWebBrowser(Program.GetAppConfig("RepositoryUrl"));
}
private void userdefinedVariablesToolStripMenuItem_Click(object sender, EventArgs e) private void userdefinedVariablesToolStripMenuItem_Click(object sender, EventArgs e)
{ {
(new EnvForm()).Show(); (new EnvForm()).Show();
@ -293,12 +309,14 @@ namespace WelsonJS.Launcher
(new GlobalSettingsForm()).Show(); (new GlobalSettingsForm()).Show();
} }
private void btnStartTheEditor_Click(object sender, EventArgs e)
{
LaunchEditor();
}
private void startCodeEditorToolStripMenuItem_Click(object sender, EventArgs e) private void startCodeEditorToolStripMenuItem_Click(object sender, EventArgs e)
{ {
if (RunResourceServer()) LaunchEditor();
{
Program.OpenWebBrowser(Program._resourceServer.GetPrefix());
}
} }
private void openCodeEditorToolStripMenuItem_Click(object sender, EventArgs e) private void openCodeEditorToolStripMenuItem_Click(object sender, EventArgs e)
@ -316,5 +334,10 @@ namespace WelsonJS.Launcher
{ {
Program.OpenWebBrowser(Program.GetAppConfig("CopilotUrl")); Program.OpenWebBrowser(Program.GetAppConfig("CopilotUrl"));
} }
private void btnJoinTheCommunity_Click(object sender, EventArgs e)
{
Program.OpenWebBrowser(Program.GetAppConfig("RepositoryUrl"));
}
} }
} }

View File

@ -126,4 +126,7 @@
<metadata name="contextMenuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="contextMenuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>249, 17</value> <value>249, 17</value>
</metadata> </metadata>
<metadata name="saveFileDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>407, 17</value>
</metadata>
</root> </root>

View File

@ -197,6 +197,16 @@ namespace WelsonJS.Launcher.Properties {
} }
} }
/// <summary>
/// System.Drawing.Bitmap 형식의 지역화된 리소스를 찾습니다.
/// </summary>
internal static System.Drawing.Bitmap icon_community_32 {
get {
object obj = ResourceManager.GetObject("icon_community_32", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary> /// <summary>
/// System.Drawing.Bitmap 형식의 지역화된 리소스를 찾습니다. /// System.Drawing.Bitmap 형식의 지역화된 리소스를 찾습니다.
/// </summary> /// </summary>
@ -217,6 +227,16 @@ namespace WelsonJS.Launcher.Properties {
} }
} }
/// <summary>
/// System.Drawing.Bitmap 형식의 지역화된 리소스를 찾습니다.
/// </summary>
internal static System.Drawing.Bitmap icon_editor_32 {
get {
object obj = ResourceManager.GetObject("icon_editor_32", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary> /// <summary>
/// System.Drawing.Bitmap 형식의 지역화된 리소스를 찾습니다. /// System.Drawing.Bitmap 형식의 지역화된 리소스를 찾습니다.
/// </summary> /// </summary>

View File

@ -223,4 +223,10 @@
<data name="ResourceServerAllowOrigins" xml:space="preserve"> <data name="ResourceServerAllowOrigins" xml:space="preserve">
<value /> <value />
</data> </data>
<data name="icon_community_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icon_community_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="icon_editor_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icon_editor_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root> </root>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1019 B

View File

@ -197,5 +197,11 @@
<Name>WelsonJS.Esent</Name> <Name>WelsonJS.Esent</Name>
</ProjectReference> </ProjectReference>
</ItemGroup> </ItemGroup>
<ItemGroup>
<None Include="Resources\icon_editor_32.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\icon_community_32.png" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project> </Project>