mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-03-22 01:55:10 -05:00
* Update to .NET 10 * Property fields * API signature updates * Extension method blocks * Completed dark mode support Outside of my control: - vertical tab control (pkm editor) - datetimepicker controls - lgpe event flags (no idea) - some control types having white-borders when they should really be gray Box background is 50% transparency to effectively darken the image. * Custom legality report popup * Event diff dialog, version select dialog * Add quick overwrite popup for export sav * Extension methods * Dark Mode: glow currently editing sprite * Add invalid encounter hint for trade evolutions * Extension properties * Append legality hint on hover card * Slot image loading: clear the screen-reader description if a slot is empty/invalid, rather than retain the previous description. Changing boxes would easily confuse users on this.
68 lines
2.5 KiB
C#
68 lines
2.5 KiB
C#
namespace PKHeX.WinForms
|
|
{
|
|
partial class ReportGrid
|
|
{
|
|
/// <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()
|
|
{
|
|
dgData = new PKHeX.WinForms.Controls.DoubleBufferedDataGridView();
|
|
((System.ComponentModel.ISupportInitialize)(dgData)).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// dgData
|
|
//
|
|
dgData.AllowUserToAddRows = false;
|
|
dgData.AllowUserToDeleteRows = false;
|
|
dgData.ClipboardCopyMode = System.Windows.Forms.DataGridViewClipboardCopyMode.EnableAlwaysIncludeHeaderText;
|
|
dgData.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
dgData.Location = new System.Drawing.Point(0, 0);
|
|
dgData.Name = "dgData";
|
|
dgData.RowHeadersVisible = false;
|
|
dgData.Size = new System.Drawing.Size(812, 461);
|
|
dgData.TabIndex = 0;
|
|
dgData.Sorted += new System.EventHandler(Data_Sorted);
|
|
//
|
|
// ReportGrid
|
|
//
|
|
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
|
ClientSize = new System.Drawing.Size(812, 461);
|
|
Controls.Add(dgData);
|
|
Icon = global::PKHeX.WinForms.Properties.Resources.Icon;
|
|
Name = "ReportGrid";
|
|
StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
Text = "Box Data Report";
|
|
FormClosing += new System.Windows.Forms.FormClosingEventHandler(PromptSaveCSV);
|
|
((System.ComponentModel.ISupportInitialize)(dgData)).EndInit();
|
|
ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private PKHeX.WinForms.Controls.DoubleBufferedDataGridView dgData;
|
|
}
|
|
}
|