From 39535eacdaa9639d90a0da8a0ab11ddbc2d99a8f Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 25 Jun 2020 09:18:33 -0500 Subject: [PATCH] RomStatus picker - remove image setting out of designer before it gets eaten by a designer based change --- .../RomStatusPicker.Designer.cs | 12 ------------ src/BizHawk.Client.EmuHawk/RomStatusPicker.cs | 10 ++++++++-- 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/RomStatusPicker.Designer.cs b/src/BizHawk.Client.EmuHawk/RomStatusPicker.Designer.cs index d9e248fbb6..95ddc9aa4e 100644 --- a/src/BizHawk.Client.EmuHawk/RomStatusPicker.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/RomStatusPicker.Designer.cs @@ -92,8 +92,6 @@ // // pictureBox1 // - this.pictureBox1.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.GreenCheck; - this.pictureBox1.InitialImage = global::BizHawk.Client.EmuHawk.Properties.Resources.GreenCheck; this.pictureBox1.Location = new System.Drawing.Point(29, 10); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(16, 16); @@ -120,8 +118,6 @@ // // pictureBox2 // - this.pictureBox2.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.HomeBrew; - this.pictureBox2.InitialImage = global::BizHawk.Client.EmuHawk.Properties.Resources.HomeBrew; this.pictureBox2.Location = new System.Drawing.Point(29, 35); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new System.Drawing.Size(16, 16); @@ -148,8 +144,6 @@ // // pictureBox3 // - this.pictureBox3.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Hack; - this.pictureBox3.InitialImage = global::BizHawk.Client.EmuHawk.Properties.Resources.Hack; this.pictureBox3.Location = new System.Drawing.Point(29, 60); this.pictureBox3.Name = "pictureBox3"; this.pictureBox3.Size = new System.Drawing.Size(16, 16); @@ -176,8 +170,6 @@ // // pictureBox4 // - this.pictureBox4.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Translation; - this.pictureBox4.InitialImage = global::BizHawk.Client.EmuHawk.Properties.Resources.Translation; this.pictureBox4.Location = new System.Drawing.Point(29, 85); this.pictureBox4.Name = "pictureBox4"; this.pictureBox4.Size = new System.Drawing.Size(16, 16); @@ -204,8 +196,6 @@ // // pictureBox5 // - this.pictureBox5.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.ExclamationRed; - this.pictureBox5.InitialImage = global::BizHawk.Client.EmuHawk.Properties.Resources.ExclamationRed; this.pictureBox5.Location = new System.Drawing.Point(29, 110); this.pictureBox5.Name = "pictureBox5"; this.pictureBox5.Size = new System.Drawing.Size(16, 16); @@ -232,8 +222,6 @@ // // pictureBox6 // - this.pictureBox6.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.ExclamationRed; - this.pictureBox6.InitialImage = global::BizHawk.Client.EmuHawk.Properties.Resources.ExclamationRed; this.pictureBox6.Location = new System.Drawing.Point(29, 135); this.pictureBox6.Name = "pictureBox6"; this.pictureBox6.Size = new System.Drawing.Size(16, 16); diff --git a/src/BizHawk.Client.EmuHawk/RomStatusPicker.cs b/src/BizHawk.Client.EmuHawk/RomStatusPicker.cs index f89a7aed38..8ba7eaa849 100644 --- a/src/BizHawk.Client.EmuHawk/RomStatusPicker.cs +++ b/src/BizHawk.Client.EmuHawk/RomStatusPicker.cs @@ -1,5 +1,6 @@ using System; using System.Windows.Forms; +using BizHawk.Client.EmuHawk.Properties; using BizHawk.Emulation.Common; namespace BizHawk.Client.EmuHawk @@ -9,14 +10,19 @@ namespace BizHawk.Client.EmuHawk public RomStatusPicker() { InitializeComponent(); - PickedStatus = RomStatus.Unknown; } - public RomStatus PickedStatus { get; private set; } + public RomStatus PickedStatus { get; private set; } = RomStatus.Unknown; private void RomStatusPicker_Load(object sender, EventArgs e) { GoodRadio.Select(); + pictureBox1.Image = pictureBox1.InitialImage = Resources.GreenCheck; + pictureBox2.Image = pictureBox2.InitialImage = Resources.HomeBrew; + pictureBox3.Image = pictureBox3.InitialImage = Resources.Hack; + pictureBox4.Image = pictureBox4.InitialImage = Resources.Translation; + pictureBox5.Image = pictureBox5.InitialImage = Resources.ExclamationRed; + pictureBox6.Image = pictureBox6.InitialImage = Resources.ExclamationRed; } private void OkBtn_Click(object sender, EventArgs e)