mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
Change namespace to usual PKHeX.WinForms.Controls
no more oddball namespaces
This commit is contained in:
parent
f529fd1432
commit
910fce9812
5 changed files with 8 additions and 8 deletions
|
@ -127,7 +127,7 @@ namespace PKHeX.WinForms
|
|||
this.TC_Editor = new System.Windows.Forms.TabControl();
|
||||
this.Tab_Overview = new System.Windows.Forms.TabPage();
|
||||
this.GB_Stats = new System.Windows.Forms.GroupBox();
|
||||
this.TrainerStats = new PKHeX.WinForms.Subforms.Save_Editors.TrainerStat();
|
||||
this.TrainerStats = new Controls.TrainerStat();
|
||||
this.GB_Adventure = new System.Windows.Forms.GroupBox();
|
||||
this.L_Fame = new System.Windows.Forms.Label();
|
||||
this.CAL_HoFDate = new System.Windows.Forms.DateTimePicker();
|
||||
|
@ -1725,7 +1725,7 @@ namespace PKHeX.WinForms
|
|||
private System.Windows.Forms.Label L_TRNick;
|
||||
private System.Windows.Forms.TextBox TB_TRNick;
|
||||
private System.Windows.Forms.CheckBox CHK_MegaUnlocked;
|
||||
private Subforms.Save_Editors.TrainerStat TrainerStats;
|
||||
private Controls.TrainerStat TrainerStats;
|
||||
private System.Windows.Forms.PropertyGrid PG_CurrentAppearance;
|
||||
private System.Windows.Forms.CheckBox CHK_MegaRayquazaUnlocked;
|
||||
private System.Windows.Forms.ToolTip Tip1;
|
||||
|
|
|
@ -103,7 +103,7 @@
|
|||
this.CB_Vivillon = new System.Windows.Forms.ComboBox();
|
||||
this.L_Vivillon = new System.Windows.Forms.Label();
|
||||
this.GB_Stats = new System.Windows.Forms.GroupBox();
|
||||
this.TrainerStats = new PKHeX.WinForms.Subforms.Save_Editors.TrainerStat();
|
||||
this.TrainerStats = new Controls.TrainerStat();
|
||||
this.NUD_FC = new System.Windows.Forms.NumericUpDown();
|
||||
this.NUD_BP = new System.Windows.Forms.NumericUpDown();
|
||||
this.L_FC = new System.Windows.Forms.Label();
|
||||
|
@ -2435,7 +2435,7 @@
|
|||
private System.Windows.Forms.TextBox TB_RotomOT;
|
||||
private System.Windows.Forms.Label L_RotomOT;
|
||||
private Controls.TrainerID trainerID1;
|
||||
private Subforms.Save_Editors.TrainerStat TrainerStats;
|
||||
private Controls.TrainerStat TrainerStats;
|
||||
private System.Windows.Forms.NumericUpDown NUD_RotomAffection;
|
||||
private System.Windows.Forms.GroupBox GB_Rotom;
|
||||
private System.Windows.Forms.CheckBox CHK_RotoLoto2;
|
||||
|
|
|
@ -107,7 +107,7 @@
|
|||
this.GB_Stats = new System.Windows.Forms.GroupBox();
|
||||
this.NUD_BP = new System.Windows.Forms.NumericUpDown();
|
||||
this.L_BP = new System.Windows.Forms.Label();
|
||||
this.TrainerStats = new PKHeX.WinForms.Subforms.Save_Editors.TrainerStat();
|
||||
this.TrainerStats = new Controls.TrainerStat();
|
||||
this.trainerID1 = new PKHeX.WinForms.Controls.TrainerID();
|
||||
this.GB_Adventure = new System.Windows.Forms.GroupBox();
|
||||
this.L_Fame = new System.Windows.Forms.Label();
|
||||
|
@ -1497,7 +1497,7 @@
|
|||
private System.Windows.Forms.Label L_R;
|
||||
private Controls.TrainerID trainerID1;
|
||||
private System.Windows.Forms.GroupBox GB_Stats;
|
||||
private Subforms.Save_Editors.TrainerStat TrainerStats;
|
||||
private Controls.TrainerStat TrainerStats;
|
||||
private System.Windows.Forms.NumericUpDown NUD_BP;
|
||||
private System.Windows.Forms.Label L_BP;
|
||||
private System.Windows.Forms.TextBox TB_TrainerCardName;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
namespace PKHeX.WinForms.Subforms.Save_Editors
|
||||
namespace PKHeX.WinForms.Controls
|
||||
{
|
||||
partial class TrainerStat
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||
using System.Windows.Forms;
|
||||
using PKHeX.Core;
|
||||
|
||||
namespace PKHeX.WinForms.Subforms.Save_Editors
|
||||
namespace PKHeX.WinForms.Controls
|
||||
{
|
||||
public partial class TrainerStat : UserControl
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue