Parent Directory
|
Revision Log
|
Patch
--- trunk/EmuXPortal/GameControl.cs 2014/08/05 12:58:18 255 +++ trunk/EmuXPortal/GameControl.cs 2014/08/05 13:21:16 256 @@ -12,7 +12,9 @@ public partial class GameControl : UserControl { private object image_lock = new object(); - public GameControl() { InitializeComponent(); } + public GameControl() { InitializeComponent(); + gameImage.SizeMode = PictureBoxSizeMode.StretchImage; + } public Image GameImage { get { lock (image_lock) { return gameImage.Image; } } set { lock (image_lock) { gameImage.Image = value; } } } public string GameName { get { return gameName.Text; } set { gameName.Text = value; } } private void GameControl_Load(object sender, EventArgs e)
ViewVC Help | |
Powered by ViewVC 1.1.22 |