From 88b66997132a6beb42ae4a2cf4fab64914277d92 Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 7 Aug 2014 21:52:22 +0000 Subject: [PATCH] Input roll fix crashing on paint and in the designer, the widget now draws a white background, woo! --- .../tools/TAStudio/InputRoll.cs | 15 +++++++++++++-- .../TAStudio/TasStudioExperiment.Designer.cs | 1 - .../tools/TAStudio/TasStudioExperiment.cs | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs index 834731dbc3..c2b8560d65 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs @@ -12,12 +12,16 @@ namespace BizHawk.Client.EmuHawk { public class InputRoll : Control { + private readonly RollColumns _columns = new RollColumns(); public InputRoll() { CellPadding = 3; - SetStyle(ControlStyles.OptimizedDoubleBuffer, true); + //SetStyle(ControlStyles.OptimizedDoubleBuffer, true); SetStyle(ControlStyles.AllPaintingInWmPaint, true); + SetStyle(ControlStyles.SupportsTransparentBackColor, true); + //SetStyle(ControlStyles.Opaque, true); this.Font = new Font("Courier New", 8); + BackColor = Color.Transparent; } #region Properties @@ -59,7 +63,13 @@ namespace BizHawk.Client.EmuHawk /// Column data /// [Category("Behavior")] - public RollColumns Columns { get; set; } + public RollColumns Columns + { + get + { + return _columns; + } + } #endregion @@ -154,6 +164,7 @@ namespace BizHawk.Client.EmuHawk protected override void OnPaint(PaintEventArgs e) { + base.OnPaint(e); } diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TasStudioExperiment.Designer.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TasStudioExperiment.Designer.cs index 2f2d7ff34e..c073a61d01 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TasStudioExperiment.Designer.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TasStudioExperiment.Designer.cs @@ -68,7 +68,6 @@ this.InputView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.InputView.Columns = null; this.InputView.HorizontalOrientation = false; this.InputView.ItemCount = 0; this.InputView.Location = new System.Drawing.Point(12, 103); diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TasStudioExperiment.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TasStudioExperiment.cs index 4e3423bdd4..ccba8b3d9d 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TasStudioExperiment.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TasStudioExperiment.cs @@ -24,7 +24,7 @@ namespace BizHawk.Client.EmuHawk return; } - InputView.Refresh(); + InputView.Invalidate(); } public void FastUpdate()