setup: renamed node settings form

This commit is contained in:
Nathan Woodburn 2023-06-07 14:50:23 +10:00
parent 823d036626
commit 396c7b30dd
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1
2 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ using SizeF = System.Drawing.SizeF;
namespace FireWallet namespace FireWallet
{ {
partial class CreateForm partial class NodeForm
{ {
/// <summary> /// <summary>
/// Required designer variable. /// Required designer variable.
@ -160,7 +160,7 @@ namespace FireWallet
labelNodeIP.TabIndex = 0; labelNodeIP.TabIndex = 0;
labelNodeIP.Text = "IP:"; labelNodeIP.Text = "IP:";
// //
// CreateForm // NodeForm
// //
AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font; AutoScaleMode = AutoScaleMode.Font;
@ -168,7 +168,7 @@ namespace FireWallet
Controls.Add(groupBoxNode); Controls.Add(groupBoxNode);
Controls.Add(labelWelcome); Controls.Add(labelWelcome);
FormBorderStyle = FormBorderStyle.Fixed3D; FormBorderStyle = FormBorderStyle.Fixed3D;
Name = "CreateForm"; Name = "NodeForm";
Text = "Setup"; Text = "Setup";
Load += CreateForm_Load; Load += CreateForm_Load;
Resize += CreateForm_Resize; Resize += CreateForm_Resize;

View File

@ -13,10 +13,10 @@ using System.Xml.Linq;
namespace FireWallet namespace FireWallet
{ {
public partial class CreateForm : Form public partial class NodeForm : Form
{ {
string dir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\FireWallet\\"; string dir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\FireWallet\\";
public CreateForm() public NodeForm()
{ {
InitializeComponent(); InitializeComponent();
} }