1 |
william |
17 |
using System; |
2 |
|
|
using System.Collections.Generic; |
3 |
|
|
using System.ComponentModel; |
4 |
|
|
using System.Drawing; |
5 |
|
|
using System.Data; |
6 |
|
|
using System.Linq; |
7 |
|
|
using System.Text; |
8 |
|
|
using System.Windows.Forms; |
9 |
|
|
|
10 |
|
|
namespace EmuXPortal |
11 |
|
|
{ |
12 |
|
|
public partial class PlatformControl : UserControl |
13 |
|
|
{ |
14 |
william |
22 |
public PlatformControl() { InitializeComponent(); } |
15 |
william |
17 |
public Image PlatformImage { get { return platformImage.Image; } set { platformImage.Image = value; } } |
16 |
|
|
public string PlatformName { get { return platformName.Text; } set { platformName.Text = value; } } |
17 |
william |
22 |
private void PlatformControl_Load(object sender, EventArgs e) |
18 |
william |
17 |
{ |
19 |
william |
22 |
Graphics g = platformName.CreateGraphics(); |
20 |
|
|
Size size = g.MeasureString(platformName.Text, platformName.Font).ToSize(); |
21 |
|
|
platformName.Size = new Size(size.Width + 5, platformName.Size.Height); |
22 |
william |
17 |
} |
23 |
|
|
} |
24 |
|
|
} |