log window icon
This commit is contained in:
parent
6e938718f5
commit
5ef46b9969
|
@ -155,7 +155,7 @@
|
||||||
this.MainMenuStrip = this.MenuStrip;
|
this.MainMenuStrip = this.MenuStrip;
|
||||||
this.MinimumSize = new System.Drawing.Size(171, 97);
|
this.MinimumSize = new System.Drawing.Size(171, 97);
|
||||||
this.Name = "LogWindow";
|
this.Name = "LogWindow";
|
||||||
this.ShowIcon = false;
|
this.ShowIcon = true;
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = "Log Window";
|
this.Text = "Log Window";
|
||||||
this.Load += new System.EventHandler(this.LogWindow_Load);
|
this.Load += new System.EventHandler(this.LogWindow_Load);
|
||||||
|
|
|
@ -26,6 +26,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
public LogWindow()
|
public LogWindow()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
Icon = Properties.Resources.CommandWindow;
|
||||||
AddToGameDbBtn.Image = Properties.Resources.add;
|
AddToGameDbBtn.Image = Properties.Resources.add;
|
||||||
Closing += (o, e) =>
|
Closing += (o, e) =>
|
||||||
{
|
{
|
||||||
|
|
|
@ -212,5 +212,6 @@ namespace BizHawk.Client.EmuHawk.Properties
|
||||||
internal static readonly Bitmap YellowLeft = ReadEmbeddedBitmap("YellowLeft");
|
internal static readonly Bitmap YellowLeft = ReadEmbeddedBitmap("YellowLeft");
|
||||||
internal static readonly Bitmap YellowRight = ReadEmbeddedBitmap("YellowRight");
|
internal static readonly Bitmap YellowRight = ReadEmbeddedBitmap("YellowRight");
|
||||||
internal static readonly Bitmap YellowUp = ReadEmbeddedBitmap("YellowUp");
|
internal static readonly Bitmap YellowUp = ReadEmbeddedBitmap("YellowUp");
|
||||||
|
internal static readonly Icon CommandWindow = ReadEmbeddedIcon("commandWindow");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue