mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-16 20:17:30 +08:00
52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CodeWalker.Project.Panels
|
|
{
|
|
public partial class EditProjectPanel : ProjectPanel
|
|
{
|
|
public ProjectForm ProjectForm;
|
|
public ProjectFile Project { get; set; }
|
|
|
|
public EditProjectPanel(ProjectForm owner)
|
|
{
|
|
ProjectForm = owner;
|
|
InitializeComponent();
|
|
}
|
|
|
|
|
|
public void SetProject(ProjectFile project)
|
|
{
|
|
Project = project;
|
|
Tag = project;
|
|
ProjectNameTextBox.Text = Project.Name;
|
|
UpdateFormTitle();
|
|
}
|
|
|
|
private void UpdateFormTitle()
|
|
{
|
|
Text = Project.Filename + (Project.HasChanged ? "*" : "");
|
|
}
|
|
|
|
private void ProjectNameTextBox_TextChanged(object sender, EventArgs e)
|
|
{
|
|
if (Project != null)
|
|
{
|
|
if (Project.Name != ProjectNameTextBox.Text)
|
|
{
|
|
Project.Name = ProjectNameTextBox.Text;
|
|
ProjectForm?.SetProjectHasChanged(true);
|
|
UpdateFormTitle();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|