idle_master_extended/steam-idle Source/steam-idle/frmMain.cs
2015-01-13 09:21:57 -08:00

26 lines
589 B
C#
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace steam_idle
{
public partial class frmMain : Form
{
public frmMain(long appid)
{
InitializeComponent();
picApp.Load("http://cdn.akamai.steamstatic.com/steam/apps/" + appid.ToString() + "/header_292x136.jpg");
}
private void frmMain_Load(object sender, EventArgs e)
{
}
}
}